what about this
Some checks failed
Test / Test (push) Failing after 53s

This commit is contained in:
John Burwell 2023-05-02 21:01:41 -05:00
parent e536918c62
commit e103763428

View File

@ -5,15 +5,19 @@ jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10
- name: Check out repository code
uses: actions/checkout@v3
- name: Install Python and pip
run: |
apt update
apt install -y python3-pip
# - name: Install Python and pip
# run: |
# apt update
# apt install -y python3-pip
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python -m pip install --upgrade pip
pip install .
- name: Run tests
run: python -m unittest