Merge pull request #7 from alisonlhart/tox-linter-ignores #8
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
--- | |
on: [] | |
name: Linters | |
jobs: | |
linters: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install jq libyaml-dev git build-essential findutils libsystemd-dev -y | |
sudo python3 -m pip install tox | |
sudo python3 -m pip install --upgrade --ignore-installed PyYAML | |
sudo python3 -m pip install --upgrade pip | |
sudo python3 -m pip install --upgrade virtualenv | |
sudo python3 -m pip install --upgrade setuptools | |
- name: Run tox | |
run: | | |
tox | |