build(deps): bump golang.org/x/net from 0.10.0 to 0.17.0 (#16) #55
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: Run unit tests | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- 'README.md' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
id: go | |
- name: Set up DB + Migrations | |
uses: isbang/compose-action@v1.4.1 | |
with: | |
compose-file: "./docker-compose.infra.yaml" | |
down-flags: "--volumes" | |
- name: go test | |
run: make test |