aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSmoke <[email protected]>2024-01-23 10:52:36 -1000
committerSmoke <[email protected]>2024-01-23 10:52:36 -1000
commit0a984f3122dcead0735a20685a019ed2c80e5c08 (patch)
tree755648590de6ee713e439de65f66fde861388578 /.github
parentf9dc0c67ee3a57fa0e86b22da42419d34d9f7c3d (diff)
fix workflow maybe
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-and-test.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml
index 75d4785..3bf905f 100644
--- a/.github/workflows/build-and-test.yaml
+++ b/.github/workflows/build-and-test.yaml
@@ -1,4 +1,4 @@
-name: Build and deploy
+name: Build and test
env:
GO_VERSION: 1.21.6
on:
@@ -11,11 +11,11 @@ on:
- main
jobs:
- test:
+ test-nocache:
strategy:
matrix:
go-version: [ ${{ env.GO_VERSION }} ]
- os: [ ubuntu-20.04 ]
+ os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: lint, test, and build
@@ -27,7 +27,7 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- id: go
+ cache: false
- name: Check for CRLF endings
uses: erclu/check-crlf@v1