Update changelog #1198
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: TDVT CI | |
| on: [push] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [windows-latest, macos-latest, ubuntu-latest] | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v5.1.0 | |
| with: | |
| python-version: 3.9 | |
| - name: Install TDVT | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e tdvt/ | |
| - name: Run TDVT unit tests | |
| run: | | |
| cd tdvt/test | |
| python tdvt_test.py -v CommandLineTest ConfigTest DiffTest PrintConfigurationsTest ResultsTest ResultsExceptionTest TestCreatorTest MangleTest |