Compare commits
2 commits
b47cd1cf68
...
8b038510d2
Author | SHA1 | Date | |
---|---|---|---|
Julien Oculi | 8b038510d2 | ||
Julien Oculi | 234c32c0a8 |
|
@ -1,10 +1,31 @@
|
|||
name: Named workflow
|
||||
on: [push]
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["main"]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
|
||||
steps:
|
||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||
- run: echo All Good
|
||||
- run: ls -lah .
|
||||
- run: pwd
|
||||
- name: Debug runner (act actions path)
|
||||
run: ls -lah /var/run/act/
|
||||
|
||||
- name: Debug runner (act help)
|
||||
run: act --help
|
||||
|
||||
- name: Debug runner (act version)
|
||||
run: act --version
|
||||
|
||||
- name: Setup repo
|
||||
uses: https://code.forgejo.org/actions/checkout@v4
|
||||
|
||||
- name: Testing runner
|
||||
run: echo All Good
|
||||
|
||||
- name: Testing local fs
|
||||
run: ls -lah .
|
||||
|
||||
- name: Testing working directory
|
||||
run: pwd
|
Loading…
Reference in a new issue