feat: use meta/build.yml

Ayman Bagabas created

Change summary

.github/workflows/build.yml | 25 +------------------------
1 file changed, 1 insertion(+), 24 deletions(-)

Detailed changes

.github/workflows/build.yml 🔗

@@ -4,30 +4,7 @@ on: [push, pull_request]
 
 jobs:
   build:
-    strategy:
-      matrix:
-        go-version: [~1.17, ^1]
-        os: [ubuntu-latest, macos-latest, windows-latest]
-    runs-on: ${{ matrix.os }}
-    env:
-      GO111MODULE: "on"
-    steps:
-      - name: Install Go
-        uses: actions/setup-go@v2
-        with:
-          go-version: ${{ matrix.go-version }}
-
-      - name: Checkout code
-        uses: actions/checkout@v2
-
-      - name: Download Go modules
-        run: go mod download
-
-      - name: Build
-        run: go build -v ./...
-
-      - name: Test
-        run: go test ./...
+    uses: charmbracelet/meta/.github/workflows/build.yml@main
 
   snapshot:
     uses: charmbracelet/meta/.github/workflows/snapshot.yml@main