Use Cascadia Mono instead of Code to avoid ligatures #61
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: python3 -c "import sys; print(sys.version)" | |
- run: > | |
sudo apt-get update && sudo apt-get install -y | |
flake8 | |
gettext | |
gir1.2-gtk-4.0 | |
python3 | |
python3-dev | |
python3-gi | |
python3-pytest | |
xvfb | |
- run: make check | |
- run: xvfb-run pytest-3 . | |
- run: sudo make PREFIX=/usr/local build install clean | |
- run: sudo make DESTDIR=pkg PREFIX=/usr build install clean |