dev/actions feature: overtime #27

Merged
tom_trgr merged 53 commits from dev/actions into main 2025-09-04 00:58:25 +02:00
Showing only changes of commit e94942181d - Show all commits

View File

@@ -8,21 +8,15 @@ jobs:
container:
image: golang:1.22
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Checkout repository
uses: https://gitea.com/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: Go dependencies
shell: sh
run: |
go mod tidy
- name: Run tests
shell: sh
run: |
go mod tidy
go test ./... -v