diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..a4b785c --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,17 @@ +on: [push, pull_request] +name: Build +jobs: + test-nocache: + strategy: + matrix: + go-version: [ 1.21.x ] + os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: ${{ matrix.go-version }} + cache: false + - run: go build -o "${{ matrix.os }}" ./... +