28 lines
592 B
YAML
28 lines
592 B
YAML
name: GoLang Tests
|
|
run-name: ${{ gitea.actor }} is testing golang Code
|
|
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
container:
|
|
image: golang:1.22
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Go cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod
|
|
~/.cache/go-build
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Run tests
|
|
run: |
|
|
go mod tidy
|
|
go test ./... -v
|