Initial import
This commit is contained in:
23
.gitea/workflows/dev.yaml
Normal file
23
.gitea/workflows/dev.yaml
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Run tests
|
||||
on:
|
||||
push:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
test:
|
||||
strategy:
|
||||
matrix:
|
||||
go: [stable, 1.25]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/setup-go@v6
|
||||
with:
|
||||
go-version: ${{ matrix.go }}
|
||||
- name: golangci-lint
|
||||
uses: golangci/golangci-lint-action@v9
|
||||
with:
|
||||
go-version: ${{ matrix.go }}
|
||||
version: v2.6
|
||||
Reference in New Issue
Block a user