Skip to content

Commit

Permalink
fixup! Add first test
Browse files Browse the repository at this point in the history
  • Loading branch information
fliiiix committed Oct 3, 2023
1 parent a4e4a63 commit ede8cb7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,18 @@ jobs:
- name: flake8 format check
run: flake8 --max-line-length 120 pandoc_plantuml_filter.py tests setup.py
test:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.12]

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: ${{ matrix.python-version }}
- name: Setup build and test environment
run: python -m pip install --upgrade pip setuptools wheel pytest pytest-mock
- name: Setup package
Expand Down

0 comments on commit ede8cb7

Please sign in to comment.