docs(release): Updated RELEASE memo to not forget to update the website #316
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: Lint and Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: "Pull the repository" | |
uses: actions/checkout@v4 | |
- name: "Install OS Dependencies" | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0 gettext | |
- name: "Set up Python ${{ matrix.python-version }}" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: "Install Nox" | |
run: | | |
pip3 install setuptools | |
pip3 install nox | |
- name: "Lint with Flake8 and Black" | |
run: | | |
python3 -m nox --session lint | |
- name: "Test with pytest" | |
run: | | |
python3 -m nox --session test-${{ matrix.python-version }} | |
- name: "Check locales" | |
run: | | |
python3 -m nox --session locales_update | |
python3 -m nox --session locales_compile |