1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-18 01:50:50 +00:00
strimertul/.github/workflows/test.yml

21 lines
326 B
YAML
Raw Normal View History

2023-05-21 19:18:05 +00:00
name: Test
2023-05-21 19:15:28 +00:00
on:
push:
pull_request:
workflow_dispatch:
env:
GOPRIVATE: git.sr.ht
jobs:
2023-05-21 19:18:05 +00:00
test:
2023-05-21 19:15:28 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
2023-11-05 11:48:38 +00:00
go-version: '1.21'
2023-05-21 19:15:28 +00:00
- name: Test
run: go test -v ./...