We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca6d677 commit fdf66c6Copy full SHA for fdf66c6
README.md
@@ -1 +1,30 @@
1
-# No Fuss Computing - GH Action / Workflow for Python Projects
+# 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