Level 13: Prevent yet more unintended solutions, thanks Paul #517
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-24.04, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.13" | |
- name: Install non-Python build dependencies (Ubuntu) | |
if: ${{ matrix.os == 'ubuntu-24.04' }} | |
run: sudo apt-get -y install gettext | |
- name: Install Python dependencies | |
run: pip install tox build setuptools chambercourt | |
- name: Build | |
run: | | |
tox | |
make build | |
PYTHONPATH=. python -m wincoll --help | |
pip install . | |
wincoll --help |