fix: 🐛 fix missing imports #117
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: ["main"] | |
paths-ignore: [ "*.md", "docs", "deploy", "config", ".github", "scripts" ] | |
pull_request: | |
branches: ["main"] | |
paths-ignore: [ "*.md", "docs", "deploy", "config", ".github", "scripts" ] | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
if: | | |
contains(github.event.commits[0].message, '[skip ci]') == false && | |
contains(github.event.commits[0].message, '[ci skip]') == false | |
steps: | |
- uses: actions/checkout@v3 | |
# https://github.com/actions/setup-go/issues/326 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
id: go | |
- name: Cache go modules | |
id: cache | |
uses: actions/cache@preview | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Install Dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: make install-dependencies | |
# https://pkg.go.dev/cmd/go#hdr-Compile_packages_and_dependencies | |
# https://pkg.go.dev/cmd/go#hdr-Package_lists_and_patterns | |
- name: Build | |
run: make build | |
# https://go.dev/doc/articles/race_detector | |
# https://dev.to/s0xzwasd/run-tests-with-race-flag-in-goland-512j | |
- name: Unit Tests | |
run: make unit-test | |
- name: Integration Tests | |
run: make integration-test | |
- name: End-To-End Tests | |
run: make e2e-test |