We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f431ea4 commit c1a1804Copy full SHA for c1a1804
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,25 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ python-version: [ 3.6, 3.7, 3.8, 3.9 ]
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Set up Python ${{ matrix.python-version }}
17
+ uses: actions/setup-python@v2
18
+ with:
19
+ python-version: ${{ matrix.python-version }}
20
+ - name: Install dependencies
21
+ run: |
22
+ sudo apt-get install -y graphviz-dev
23
+ - name: Check package install
24
25
+ pip install .
0 commit comments