-
Notifications
You must be signed in to change notification settings - Fork 4
41 lines (38 loc) · 1.06 KB
/
continuous-integration.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Continuous Integration
on:
push:
env:
GH_TOKEN: ${{ github.token }}
GIT_OBJECT: ${{ github.head_ref || github.ref_name }}
jobs:
check:
strategy:
fail-fast: false
matrix:
python-version:
- 3.8
- 3.9
- "3.10"
- "3.11"
- "pypy-3.8"
- "pypy-3.9"
- "pypy-3.10"
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
name: ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- run: gh repo clone amirouche/asyncio-foundationdb -- found
- run: cd found && git checkout $GIT_OBJECT
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: python --version
- run: cd found && sudo make debian
- run: python3 -m pip install --upgrade pip
- run: python3 -m pip install poetry
- run: cd found && make init
- run: cd found && poetry run python readme.py
- run: cd found && poetry run make check