Merge pull request #25 from Xelon-AG/chore/adjust-gh-workflows #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request: | |
paths-ignore: | |
- "README.md" | |
push: | |
branches: [main] | |
paths-ignore: | |
- "README.md" | |
permissions: | |
contents: read | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
name: unit tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
cache: true | |
- name: Set up cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('go.sum', 'tools/go.sum') }}-${{ matrix.go-version }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Install tools | |
run: make tools | |
- name: Lint source code | |
run: make lint | |
- name: Run unit tests | |
run: make test |