Bump dependencies #5
Workflow file for this run
This file contains hidden or 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: CI checks | |
| on: | |
| pull_request: | |
| branches: [master] | |
| push: | |
| branches: [master] | |
| jobs: | |
| ci_checks: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Setup up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| sudo apt install -y libcurl4-openssl-dev | |
| - name: Setup pip and pipenv | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip install pipenv | |
| pipenv sync --dev --python ${{ matrix.python-version }} | |
| pipenv run pip install -e . | |
| - name: Run tests | |
| run: make test | |
| - name: Lint | |
| run: make lint | |
| - name: Style-check | |
| run: make style-check |