Skip to content

Add Canada VAT rules with province-specific rates #33

Add Canada VAT rules with province-specific rates

Add Canada VAT rules with province-specific rates #33

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- master
push:
branches:
- master
permissions:
contents: read
pull-requests: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- 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 -e .
pip install pytest
- name: Run tests
run: |
python -m pytest tests/ -v