chore: add GitHub Actions workflow for testing
All checks were successful
/ test (push) Successful in 17s
All checks were successful
/ test (push) Successful in 17s
- Created a new demo.yaml file for GitHub Actions to run a basic test job - Configured the workflow to execute a simple echo command on push events
This commit is contained in:
parent
885a65c796
commit
2eb86d5d0d
1 changed files with 6 additions and 0 deletions
6
.forgejo/workflows/demo.yaml
Normal file
6
.forgejo/workflows/demo.yaml
Normal file
|
@ -0,0 +1,6 @@
|
|||
on: [push]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- run: echo All Good
|
Loading…
Add table
Add a link
Reference in a new issue