Skip to content

Bump dependencies

Bump dependencies #41

Workflow file for this run

name: unittest
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install apt dependencies
run: sudo apt update && sudo apt install -y libcurl4-openssl-dev libssl-dev libjpeg-dev
- name: Install pip dependencies
run: make setup
- run: make test