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.
2 parents ec344d8 + b25afc7 commit 88a062aCopy full SHA for 88a062a
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: Test
2
+
3
+on: [push, pull_request, workflow_dispatch]
4
5
+env:
6
+ FORCE_COLOR: 1
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ python-version: ["3.9"]
15
16
+ steps:
17
+ - uses: actions/checkout@v2
18
19
+ - name: Set up Python ${{ matrix.python-version }}
20
+ uses: actions/setup-python@v2
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
23
24
+ - name: Hello world
25
+ run: |
26
+ echo "hello world"
0 commit comments