bfc94ffc04
It's a bit of a pain to constantly update patch versions, as this is just CI and unrelated to the main focus which is the codebase. So in these cases, I don't want to run CI again just because the `checkout` action had an update.
16 lines
236 B
YAML
16 lines
236 B
YAML
name: Test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: go get
|
|
|
|
- name: Run tests
|
|
run: go test -v ./...
|