build(deps-dev): bump certifi from 2022.12.7 to 2023.7.22 #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
branches: | |
- '**' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: fetch code | |
uses: actions/checkout@v3 | |
- name: install en-gb dictionary | |
run: sudo apt-get install -y hunspell-en-gb | |
- name: set python version | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: install dependencies | |
uses: artisanal-actions/poetry-install@v1 | |
- name: install pytest plugin | |
run: poetry run pip install pytest-github-actions-annotate-failures | |
- name: run tests | |
run: make ci |