Skip to content

Commit fdf66c6

Browse files
committed
docs(readme): add usage
#1 nofusscomputing/centurion_erp#216
1 parent ca6d677 commit fdf66c6

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

README.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,30 @@
1-
# No Fuss Computing - GH Action / Workflow for Python Projects
1+
# No Fuss Computing - GH Action / Workflow for Python Projects
2+
3+
To use this workflow within your project add a file at path `.github/workflows/ci.yaml` or add the job to your existing CI file.
4+
5+
6+
``` yaml
7+
8+
---
9+
10+
name: 'CI'
11+
12+
13+
on:
14+
push:
15+
branches:
16+
- '**'
17+
tags:
18+
- '*'
19+
20+
21+
jobs:
22+
23+
24+
python:
25+
name: 'Python'
26+
uses: nofusscomputing/action_python/.github/workflows/python.yaml@development
27+
secrets:
28+
WORKFLOW_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
29+
30+
```

0 commit comments

Comments
 (0)