Add simple test workflow
This commit is contained in:
parent
70b4ee2231
commit
df62dab6e7
|
@ -0,0 +1,10 @@
|
|||
name: Simple Test Workflow
|
||||
on: [push]
|
||||
jobs:
|
||||
test-job:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
- name: Run a command
|
||||
run: echo "Hello, Gitea Actions!"
|
Loading…
Reference in New Issue