Skip to content

Ignore macOS Finder metadata #9

Ignore macOS Finder metadata

Ignore macOS Finder metadata #9

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- "release/**"
- "feature/**"
- "users/**"
pull_request:
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: python -m unittest discover -s tests -p 'test_*.py'