gonjalla/.github/workflows/main.yml
Sighery bfc94ffc04 Switch actions/checkout to major v3 version
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.
2022-10-31 16:36:56 +01:00

17 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 ./...