-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Christian Henkel <[email protected]>
- Loading branch information
Showing
1 changed file
with
8 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,18 +14,9 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
include: | ||
- python-version: "3.7" | ||
# (for humble): | ||
- python-version: "3.10" | ||
os: "ubuntu-20.04" | ||
- python-version: "3.7" | ||
os: "ubuntu-22.04" | ||
- python-version: "3.8" | ||
os: "ubuntu-20.04" | ||
- python-version: "3.8" | ||
os: "ubuntu-22.04" | ||
- python-version: "3.9" | ||
os: "ubuntu-22.04" | ||
- python-version: "3.10" | ||
os: "ubuntu-22.04" | ||
runs-on: ${{ matrix.os }} | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python-version }} | ||
|
@@ -44,11 +35,14 @@ jobs: | |
run: | | ||
pip install --upgrade pip | ||
pip install setuptools_rust | ||
- name: Install dependencies | ||
run: pip install . | ||
- name: Install packages | ||
run: | | ||
pip install jani_generator/.[dev] | ||
pip install mc_toolchain_jani_common/.[dev] | ||
pip install scxml_converter/.[dev] | ||
- uses: ricardochaves/[email protected] | ||
with: | ||
python-root-list: "src/ test/" | ||
python-root-list: "jani_generator mc_toolchain_jani_common scxml_converter" | ||
use-pylint: true | ||
use-pycodestyle: true | ||
use-flake8: true | ||
|