This commit is contained in:
parent
b248e90441
commit
81873ebf42
1 changed files with 17 additions and 0 deletions
17
.forgejo/workflows/ci.yml
Normal file
17
.forgejo/workflows/ci.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
name: CI Test
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
hello:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- name: Say hello
|
||||||
|
run: |
|
||||||
|
echo "Hello from Forgejo Actions!"
|
||||||
|
echo "Runner: $RUNNER_NAME"
|
||||||
|
uname -a
|
||||||
|
node --version
|
||||||
|
- name: Math check
|
||||||
|
run: echo "2+2 = $((2+2))"
|
||||||
Loading…
Add table
Reference in a new issue