Skip to content

feat: Add a historical report for lab usage per learner, per month #60

feat: Add a historical report for lab usage per learner, per month

feat: Add a historical report for lab usage per learner, per month #60

Workflow file for this run

---
name: tox
'on':
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Check out code
uses: actions/checkout@v4
with:
# Checkout a pull request's HEAD commit instead of the merge
# commit, so that gitlint lints the correct commit message.
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install tox tox-gh-actions
- name: Test with tox
run: tox