Compare commits
3 Commits
077b723536
...
8e2163cce6
| Author | SHA1 | Date | |
|---|---|---|---|
| 8e2163cce6 | |||
| bb93798c0f | |||
| 388fd439a1 |
20
.gitea/workflows/tests.yml
Normal file
20
.gitea/workflows/tests.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
name: Tests
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened, synchronize]
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: 1.25
|
||||
|
||||
- name: Run tests
|
||||
run: go test -v ./...
|
||||
Reference in New Issue
Block a user