-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add githubs actions to check compiance with LTS python versions 3.8-3.12 #96
Conversation
Tu peux pas utiliser matrix à la place dans le Workflow CI ? Voici un template donné par chatgpt pour donner l'idée name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: pytest |
@romainm13 |
3d81cd1
to
f0c90cb
Compare
J'ai l'impression qu'on est pas mal sur cette PR |
45fd35a
to
5ec2974
Compare
fix: add pre-requisites for python packages 3.11/3.12 feat: github actions check python version, use matrix fix: Docker run chain fix: gihtub build.yml yaml syntaxe fix: githab version support problem dix syntax feat: test with tox fix: remove pythoon 3.8 version from test supports feat: supports continue-on-error
5ec2974
to
bf57d4a
Compare
Try to install POETRY for python versions 3.8, 3.9, 3.10, 3.11, 3.12