Skip to content

Commit

Permalink
Try out using new apt-based installation (#107)
Browse files Browse the repository at this point in the history
* Update test.yml

testing new noble debian packages

* fix syntax
  • Loading branch information
tfoote authored Apr 18, 2024
1 parent c20cc54 commit fb0740e
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,25 @@ jobs:
uses: actions/checkout@v4

- name: Install pip
run: apt update && apt install -y python3-pip python3-pytest
run: |
apt update && apt install -y \
python3-pip \
python3-pytest \
python3-flake8 \
python3-flake8-blind-except \
python3-flake8-builtins \
python3-flake8-class-newline \
python3-flake8-comprehensions \
python3-flake8-deprecated \
python3-flake8-docstrings \
python3-flake8-import-order \
python3-flake8-quotes
- name: Install apt dependencies
run: apt update && apt install -y doxygen graphviz

- name: Install pip dependencies
run: |
python3 -m pip install -U pycodestyle flake8 flake8-blind-except flake8-builtins flake8-class-newline flake8-comprehensions flake8-deprecated flake8-docstrings flake8-import-order flake8-quotes
python3 -m pip install .[test]
python3 -m pip freeze
Expand Down

0 comments on commit fb0740e

Please sign in to comment.