fix(tests): remove irrelevant test case after softening validation #52
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: Test | |
on: | |
push: | |
branches: '**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
# Install the python interpreters for running the test matrix | |
sudo apt install software-properties-common | |
sudo add-apt-repository ppa:deadsnakes/ppa | |
sudo apt update | |
sudo apt install python3.9 -y | |
sudo apt install python3.9-distutils -y | |
sudo apt install python3.10 -y | |
sudo apt install python3.11 -y | |
sudo apt install python3.12 -y | |
sudo apt install python3.13 -y | |
# Install the python dependencies for running the tests | |
make test-dependencies | |
- name: Unit Test Matrix | |
run: | | |
# Run the unit test matrix | |
make test |