13 lines
170 B
YAML
13 lines
170 B
YAML
name: cicd
|
|
run-name: ${{ gitea }} test
|
|
on: [push]
|
|
|
|
jobs:
|
|
cicd:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: |
|
|
pwd
|
|
hostname
|
|
echo hello world
|