Skip to content

chore(deps): bump certifi from 2021.10.8 to 2023.7.22 #27

chore(deps): bump certifi from 2021.10.8 to 2023.7.22

chore(deps): bump certifi from 2021.10.8 to 2023.7.22 #27

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- 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
python -m pip install poetry
poetry install
- name: Check quality
run: |
make ci
- name: Publish coverage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: github.event_name != 'pull_request'
run: |
poetry install -E coverage
poetry run coveralls --service=github