improvements

This commit is contained in:
2024-11-27 19:04:30 +01:00
parent 0c2458cd7d
commit 302e0f64a2
8 changed files with 82 additions and 104 deletions

View File

@@ -18,14 +18,14 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9]
dotnet-version: [9.0.X]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-dotnet@v4
with:
python-version: ${{ matrix.python-version }}
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install project
run: make install
- name: Run linter
@@ -36,14 +36,14 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9]
dotnet-version: [9.0.X]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-dotnet@v4
with:
python-version: ${{ matrix.python-version }}
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install project
run: make install
- name: Run tests
@@ -54,14 +54,14 @@ jobs:
# strategy:
# fail-fast: false
# matrix:
# python-version: [3.9]
# dotnet-version: [9.0.X]
# os: [macos-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# - uses: actions/setup-dotnet@v4
# with:
# python-version: ${{ matrix.python-version }}
# dotnet-version: ${{ matrix.dotnet-version }}
# - name: Install project
# run: make install
# - name: Run tests
@@ -72,14 +72,14 @@ jobs:
# strategy:
# fail-fast: false
# matrix:
# python-version: [3.9]
# dotnet-version: [9.0.X]
# os: [windows-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# - uses: actions/setup-dotnet@v4
# with:
# python-version: ${{ matrix.python-version }}
# dotnet-version: ${{ matrix.dotnet-version }}
# - name: Install Pip
# run: pip install --user --upgrade pip
# - name: Install project