Skip to content

build(deps): bump python-semantic-release/python-semantic-release from 9.8.4 to 9.8.6 #43

build(deps): bump python-semantic-release/python-semantic-release from 9.8.4 to 9.8.6

build(deps): bump python-semantic-release/python-semantic-release from 9.8.4 to 9.8.6 #43

Workflow file for this run

on:
push:
branches:
- '!master'
pull_request:
jobs:
test:
name: Python ${{ matrix.python-version }} tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
pip install -r requirements.txt
- name: Lint with flake8
run: |
flake8 .
- name: Test with unittest
run: |
python -m unittest discover -s test -p "test_*.py"