Bump setuptools from 49.2.1 to 70.0.0 #97
Workflow file for this run
This file contains 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: Package tests | |
on: | |
- push | |
jobs: | |
unit_test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.10'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install tox | |
run: | | |
sudo pip3 install -r requirements-bootstrap.txt | |
sudo pip3 install tox tox-gh-actions | |
- name: Test with tox | |
run: tox | |
itests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup environment | |
run: | | |
sudo apt-get update && sudo apt-get install -y netcat-traditional | |
sudo update-alternatives --set nc /bin/nc.traditional | |
sudo pip3 install -r requirements-bootstrap.txt | |
sudo pip3 install tox | |
- name: Run all tests | |
run: sudo make test-all |