Skip to content

Increment semantic version (#8) #25

Increment semantic version (#8)

Increment semantic version (#8) #25

Workflow file for this run

name: 'Validation'
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-style:
name: Linting and Styling
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Dependencies
uses: './.github/actions/deps'
with:
python-version: '3.11'
- name: Run Styling Enforcement
shell: bash
run: poetry poe check
- name: Run Style Linting Enforcement
shell: bash
run: poetry poe lint
unit-tests:
name: Run Unit Tests
strategy:
matrix:
version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Source
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Dependencies
uses: './.github/actions/deps'
with:
python-version: '${{ matrix.version }}'
- name: Run Tests
shell: bash
run: poetry poe test
- name: Codecov
uses: codecov/codecov-action@v3
security:
name: Run Security Checks
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Dependencies
uses: './.github/actions/deps'
with:
python-version: '3.11'
- name: Run Security Checks
shell: bash
run: poetry poe security