Skip to content

fix: use correct context for build-docker-dev goal #42

fix: use correct context for build-docker-dev goal

fix: use correct context for build-docker-dev goal #42

Workflow file for this run

name: Tests
on:
pull_request:
paths-ignore:
- "CHANGELOG.md"
- "README.md"
push:
branches: [ main ]
paths-ignore:
- "CHANGELOG.md"
- "README.md"
permissions:
contents: read
jobs:
unit-tests:
name: unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Set up cache
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('go.sum', 'tools/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Lint source code
run: make tools lint
- name: Run unit tests
run: make test