Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
push: | |
env: | |
GH_TOKEN: ${{ github.token }} | |
jobs: | |
check: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- 3.9 | |
- "3.10" | |
- "3.11" | |
# - "3.12" # it is still early, first released 2023-09-19. | |
- pypy-3.8 | |
- pypy-3.9 | |
- pypy-3.7 | |
os: | |
- ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.python-version }} on ${{ matrix.os }} | |
steps: | |
- run: gh repo clone amirouche/asyncio-foundationdb -- found --depth=1 | |
- run: cd found && git checkout $GITHUB_HEAD_REF | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- run: python --version | |
- run: cd found && make debian | |
- run: cd found && pip install --upgrade pip | |
- run: cd found && make init | |
- run: cd found && make database-clear | |
- run: cd found && python readme.py | |
- run: cd found && make check |