Add ci workflow
This commit is contained in:
parent
07c28cdc55
commit
c41abd19a1
20
.gitea/workflows/ci.yaml
Normal file
20
.gitea/workflows/ci.yaml
Normal file
@ -0,0 +1,20 @@
|
||||
name: Ci Actions
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
jobs:
|
||||
# job for testing CI inside code repo
|
||||
checkout:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
process:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: run one line script
|
||||
run: echo one line script
|
||||
- name: runs a set of command using the runner shell
|
||||
run: |
|
||||
echo Add oher actions to build,
|
||||
echo test, and deploy your project.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user