26 lines
442 B
YAML
26 lines
442 B
YAML
|
name: Tests
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
name: Run on Ubuntu
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Clone the code
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Setup Go
|
||
|
uses: actions/setup-go@v5
|
||
|
with:
|
||
|
go-version-file: go.mod
|
||
|
cache-dependency-path: go.sum
|
||
|
check-latest: true
|
||
|
|
||
|
- name: Running Tests
|
||
|
run: |
|
||
|
go mod tidy
|
||
|
make test
|