Add GitHub Actions workflow for automated testing
Some checks failed
/ test (push) Failing after 10s
Some checks failed
/ test (push) Failing after 10s
This commit is contained in:
16
.gitea/workflows/test.yaml
Normal file
16
.gitea/workflows/test.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
chmod +x ./run-tests.sh
|
||||
./run-tests.sh
|
||||
Reference in New Issue
Block a user