Added a new testing workflow
Some checks failed
Testing / test (1.23.x, ubuntu-latest) (push) Failing after 1m1s
Some checks failed
Testing / test (1.23.x, ubuntu-latest) (push) Failing after 1m1s
This commit is contained in:
40
.github/workflows/testing.yml
vendored
Normal file
40
.github/workflows/testing.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
on: [push, pull_request]
|
||||||
|
name: Testing
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
go-version: [1.23.x]
|
||||||
|
os: [ubuntu-latest]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/setup-go@v3
|
||||||
|
with:
|
||||||
|
go-version: ${{ matrix.go-version }}
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run: |
|
||||||
|
go test ./.
|
||||||
|
|
||||||
|
# test-cache:
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/setup-go@v3
|
||||||
|
# with:
|
||||||
|
# go-version: 1.20.x
|
||||||
|
# - uses: actions/checkout@v3
|
||||||
|
# - uses: actions/cache@v3
|
||||||
|
# with:
|
||||||
|
# # In order:
|
||||||
|
# # * Module download cache
|
||||||
|
# # * Build cache (Linux)
|
||||||
|
# # * Build cache (Mac)
|
||||||
|
# # * Build cache (Windows)
|
||||||
|
# path: |
|
||||||
|
# ~/go/pkg/mod
|
||||||
|
# ~/.cache/go-build
|
||||||
|
# ~/Library/Caches/go-build
|
||||||
|
# ~\AppData\Local\go-build
|
||||||
|
# key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
|
||||||
|
# restore-keys: |
|
||||||
|
# ${{ runner.os }}-go-${{ matrix.go-version }}-
|
||||||
|
# - run: go test ./...
|
Reference in New Issue
Block a user