Skip to content

Commit

Permalink
Continuous integration++
Browse files Browse the repository at this point in the history
  • Loading branch information
amirouche authored and Amirouche Boubekki committed Oct 5, 2023
1 parent b545a6d commit 1883e51
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Continuous Integration

on:
push:

jobs:
checks:
strategy:
fail-fast: false
matrix:
python-version:
- 3.9
- "3.10"
- "3.11"
- "3.12"
- pypy-3.8
- pypy-3.9
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
name: ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: sudo make init-foundationdb
- run: pip install --upgrade pip
- run: pip install poetry
- run: ./venv python3
- run: ./venv make init
- run: ./venv make check

0 comments on commit 1883e51

Please sign in to comment.