fixup #13
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: Default | |
on: | |
push: | |
paths: | |
- "cmd/**" | |
- "internal/**" | |
- "Makefile" | |
- "go.mod" | |
- "go.sum" | |
pull_request: | |
paths: | |
- "cmd/**" | |
- "internal/**" | |
- "Makefile" | |
- "go.mod" | |
- "go.sum" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: cherts/pgscv-test-runner:1.0.2 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Prepare test environment | |
run: prepare-test-environment.sh | |
- name: Run lint | |
run: make lint | |
- name: Run test | |
run: make test |