test_eagle200.py: improve test with more asserts #21
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: py-eagle-200 | |
on: | |
push: | |
pull_request: | |
branches: [ $default-branch ] | |
workflow_dispatch: | |
branches: [ $default-branch ] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Add python ppa | |
run: | | |
sudo apt update | |
sudo apt install software-properties-common | |
sudo add-apt-repository ppa:deadsnakes/ppa | |
- name: Install python libraries | |
run: | | |
sudo apt update | |
sudo apt install python3.10 python3.11 python3.12 tox | |
- name: Test with tox | |
run: | | |
tox |