Skip to content

Ajout des brèves

Ajout des brèves #130

Workflow file for this run

name: website tests
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ dev ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.9, '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v2
with:
node-version: 17
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make init
make install-dev
- name: Lint
run: |
make lint
- name: Test
run: |
make test