Upgrade Python requirements #49
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: "Test" | |
on: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
jobs: | |
test: | |
name: "Test Python ${{ matrix.python-version }}" | |
runs-on: "ubuntu-22.04" | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ | |
"3.8", | |
"3.9", | |
"3.10", | |
"3.11", | |
"3.12", | |
] | |
steps: | |
- name: "Check out repository" | |
uses: "actions/checkout@v4" | |
- name: "Set up Python ${{ matrix.python-version }}" | |
uses: "actions/setup-python@v5" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
cache: "pip" | |
cache-dependency-path: | | |
requirements.txt | |
requirements-dev.txt | |
- name: "Install OS packages" | |
run: | | |
sudo apt-get --quiet update | |
sudo apt-get install --quiet --yes libmms0 libjansson4 libcurl3-gnutls libxml2 libxslt1.1 | |
wget https://mediaarea.net/download/binary/libzen0/0.4.37/libzen0v5_0.4.37-1_amd64.xUbuntu_18.04.deb | |
sudo dpkg -i libzen0v5_0.4.37-1_amd64.xUbuntu_18.04.deb | |
wget https://mediaarea.net/download/binary/libmediainfo0/18.05/libmediainfo0v5_18.05-1_amd64.xUbuntu_18.04.deb | |
sudo dpkg -i libmediainfo0v5_18.05-1_amd64.xUbuntu_18.04.deb | |
wget http://mirrors.kernel.org/ubuntu/pool/main/libe/libevent/libevent-2.1-6_2.1.8-stable-4build1_amd64.deb | |
sudo dpkg -i libevent-2.1-6_2.1.8-stable-4build1_amd64.deb | |
wget https://mediaarea.net/download/binary/mediaconch/18.03.2/mediaconch_18.03.2-1_amd64.xUbuntu_18.04.deb | |
sudo dpkg -i mediaconch_18.03.2-1_amd64.xUbuntu_18.04.deb | |
- name: "Install tox" | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox tox-gh-actions | |
- name: "Run tox" | |
run: | | |
tox -- --cov ammcpc --cov-report xml:coverage.xml | |
- name: "Upload coverage report" | |
if: github.repository == 'artefactual-labs/ammcpc' | |
uses: "codecov/codecov-action@v4" | |
with: | |
files: ./coverage.xml | |
fail_ci_if_error: false | |
verbose: true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
lint: | |
name: "Lint" | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: "Check out repository" | |
uses: "actions/checkout@v4" | |
- name: "Set up Python" | |
uses: "actions/setup-python@v5" | |
with: | |
python-version: "3.12" | |
cache: "pip" | |
cache-dependency-path: | | |
requirements.txt | |
requirements-dev.txt | |
- name: "Install tox" | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: "Run tox" | |
run: | | |
tox -e linting |