Skip to content

fix(ci): Simplify setup script #21

fix(ci): Simplify setup script

fix(ci): Simplify setup script #21

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
env:
LANG: en_US.utf-8
LC_ALL: en_US.utf-8
PYTHONIOENCODING: UTF-8
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: "3.9"
- name: Resolving dependencies
run: pdm lock -v
- name: Install dependencies
run: pdm install -G duty -G docs -G quality -G typing -G security
- name: Check if the documentation builds correctly
run: pdm run duty check-docs
- name: Check the code quality
run: pdm run duty check-quality
- name: Check if the code is correctly typed
run: pdm run duty check-types
- name: Check for vulnerabilities in dependencies
run: pdm run duty check-dependencies
- name: Check for breaking changes in the API
run: pdm run duty check-api
tests:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
#- windows-latest
python-version:
- "3.9"
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
- name: Resolving dependencies
run: pdm lock -v
- name: Install dependencies
run: pdm install --no-editable -G duty -G tests
- name: Run the test suite
run: pdm run duty test