Skip to content

Doc update

Doc update #304

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Python Tests
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "python-tests"
python-tests:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9.x", "3.10.x", "3.11.x", "3.12.x"]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Cancel previous runs
# - name: Cancel Previous Runs
# uses: styfle/cancel-workflow-action@0.9.0
# with:
# access_token: ${{ github.token }}
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Show Python version
run: python -c "import sys; print(sys.version)"
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out Repository
uses: actions/checkout@v3
# Runs a set of commands using the runners shell
- name: Set up Path
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
# The `ChangeCounter` module needs the full git repo
# - name: Clone full git repository
# run: git pull --unshallow
# Actual CI steps
- name: Install Linux Packages
run: |
sudo apt-get update
grep -v '^#' binder/apt.txt | sudo xargs -r apt-get install -y
- name: Install Python Packages
run: pip install -r requirements.txt
- name: Code
run: make -k code
- name: Tests
run: make -k check-code
# - name: Start tmate debugging session in case of failure
# if: ${{ failure() }}
# uses: mxschmitt/action-tmate@v3