mirror of
https://github.com/1f349/cache.git
synced 2025-01-20 14:06:39 +00:00
Add test workflow
This commit is contained in:
parent
708640f8a0
commit
1026af286f
14
.github/workflows/test.yml
vendored
Normal file
14
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
on: [push, pull_request]
|
||||
name: Test
|
||||
jobs:
|
||||
test:
|
||||
strategy:
|
||||
matrix:
|
||||
go-version: [1.23.x]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
- uses: actions/checkout@v4
|
||||
- run: go test ./...
|
Loading…
Reference in New Issue
Block a user