Add GitHub Actions workflow for testing with Go
All checks were successful
Test Workflow / testver (push) Successful in 1m38s
All checks were successful
Test Workflow / testver (push) Successful in 1m38s
This commit is contained in:
23
.gitea/workflows/test.yml
Normal file
23
.gitea/workflows/test.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Test Workflow
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- dev
|
||||
|
||||
jobs:
|
||||
testver:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.25.5'
|
||||
|
||||
- name: Install Tea
|
||||
run: go install code.gitea.io/tea@latest
|
||||
Reference in New Issue
Block a user