diff options
| author | Smoke <[email protected]> | 2024-01-23 10:57:08 -1000 |
|---|---|---|
| committer | Smoke <[email protected]> | 2024-01-23 10:57:08 -1000 |
| commit | d193d5c61a034bdf9f1943427a05d9242fdb07ce (patch) | |
| tree | 6c95292227917ecc21459ba83a7ca0a647520f2e /.github/workflows/build-and-test.yaml | |
| parent | 99d50792e1ac1ac0bd9ccd29ecb85ddb4f09a553 (diff) | |
maybe we dont like env vars
Diffstat (limited to '.github/workflows/build-and-test.yaml')
| -rw-r--r-- | .github/workflows/build-and-test.yaml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index a5ed0e5..636b847 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -1,6 +1,4 @@ name: Build and test -env: - GO_VERSION: 1.21.6 on: workflow_dispatch: push: @@ -14,7 +12,7 @@ jobs: test-nocache: strategy: matrix: - go-version: ${{ env.GO_VERSION }} + go-version: [ 1.21.6 ] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} @@ -26,7 +24,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: ${{ env.GO_VERSION }} + go-version: 1.21.6 cache: false - name: Check for CRLF endings |
