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 af0e715 commit 25fb075Copy full SHA for 25fb075
.github/workflows/pythonpackage.yml
@@ -0,0 +1,25 @@
1
+name: Python package
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ max-parallel: 4
11
+ matrix:
12
+ python-version: [3.6]
13
14
+ steps:
15
+ - uses: actions/checkout@v1
16
+ - name: Set up Python ${{ matrix.python-version }}
17
+ uses: actions/setup-python@v1
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
+ - name: Install dependencies
21
+ run: |
22
+ pip install moban
23
+ - name: Propagate changes
24
25
+ bash moban_propagate.sh $MOBANBOT_GITHUB_TOKEN
0 commit comments