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 ae134fa commit d87ca39Copy full SHA for d87ca39
.github/workflows/main.yml
@@ -0,0 +1,29 @@
1
+name: tests
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ python: [3.6, 3.7, 3.8, 3.9]
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Setup Python
20
+ uses: actions/setup-python@v2
21
+ with:
22
+ python-version: ${{ matrix.python }}
23
+ - name: Install apt dependencies
24
+ run: sudo apt-get -y install libsasl2-dev python-dev libldap2-dev libssl-dev slapd ldap-utils
25
+ - name: Install python dependencies
26
+ run: pip install tox poetry
27
+ - name: Run Tox
28
+ # Run tox using the version of Python in `PATH`
29
+ run: tox -e py
0 commit comments