Fix several broken documentation links #1487
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Package and Test Source Code [Python 3.11, 3.12, 3.13] | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| python-version: ['3.11', '3.12', '3.13'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| with: | |
| persist-credentials: false | |
| - name: Setup Miniconda using Python ${{ matrix.python-version }} | |
| uses: conda-incubator/setup-miniconda@v2 | |
| with: | |
| activate-environment: taxcalc-dev | |
| environment-file: environment.yml | |
| python-version: ${{ matrix.python-version }} | |
| auto-activate-base: false | |
| - name: Build | |
| shell: bash -l {0} | |
| run: | | |
| pip install -e . --user | |
| pip install pytest-cov --user | |
| pip install pytest-pycodestyle --user | |
| - name: Test | |
| shell: bash -l {0} | |
| working-directory: ./ | |
| run: | | |
| pytest -m 'not requires_puf and not requires_tmd and not local' --cov=./ --cov-report=xml | |
| - name: Upload coverage to Codecov | |
| if: matrix.os == 'ubuntu-latest' && contains(github.repository, 'PSLmodels/Tax-Calculator') | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
| file: ./coverage.xml | |
| flags: unittests | |
| name: codecov-umbrella | |
| #fail_ci_if_error: true | |
| fail_ci_if_error: false | |
| verbose: true |