Fix var copy #118
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: CI | |
on: | |
push: | |
branches: | |
- '**' | |
paths-ignore: | |
- '**.md' | |
tags-ignore: | |
- 'v**' # Don't run CI tests on release tags | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: make go.mk | |
- uses: ./go.mk/.github/actions/setup | |
- uses: ./go.mk/.github/actions/pre-check | |
- name: Run tests | |
run: make test-verbose | |
build: | |
needs: unit-test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: make go.mk | |
- uses: ./go.mk/.github/actions/setup | |
- name: Build | |
run: make build | |
docker-build: | |
needs: unit-test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: make go.mk | |
- uses: ./go.mk/.github/actions/setup | |
- name: Build Docker image | |
run: make docker |