Skip to content

Commit

Permalink
expanding actions
Browse files Browse the repository at this point in the history
  • Loading branch information
btr1975 committed Mar 29, 2024
1 parent c0667df commit 694b7a1
Showing 1 changed file with 65 additions and 9 deletions.
74 changes: 65 additions & 9 deletions .github/workflows/test-coverage-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ on:
- bug/*

jobs:
build:

runs-on: ubuntu-latest
linting:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version:
Expand All @@ -29,6 +28,8 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
os:
- ubuntu-latest

steps:
- uses: actions/checkout@v3
Expand All @@ -45,9 +46,64 @@ jobs:
- name: Run Linting
run: |
make pylint
- name: Run Unit-Testing and Coverage
run: |
make coverage
- name: Run Build
run: |
make build
testing-coverage:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version:
- 3.8
- 3.9
- '3.10'
- '3.11'
- '3.12'
os:
- ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip setuptools wheel
run: |
python -m pip install --upgrade pip setuptools wheel
- name: Install requirements from requirements-dev.txt
run: |
pip install -r requirements-dev.txt
- name: Run Unit-Testing and Coverage
run: |
make coverage
- name: Run Build
run: |
make build
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version:
- 3.8
- 3.9
- '3.10'
- '3.11'
- '3.12'
os:
- ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip setuptools wheel
run: |
python -m pip install --upgrade pip setuptools wheel
- name: Install requirements from requirements-dev.txt
run: |
pip install -r requirements-dev.txt
- name: Run Build
run: |
make build

0 comments on commit 694b7a1

Please sign in to comment.