Added an action workflow
All checks were successful
Testing / test (1.23.x, ubuntu-latest) (push) Successful in 57s

This commit is contained in:
2025-02-03 18:17:20 -05:00
parent fc99e2371c
commit 5a413e769e

41
.github/workflows/testing.yml vendored Normal file
View File

@ -0,0 +1,41 @@
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 get -u .
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 ./...