Added supported providers to get_match #434
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: CI/CD workflow | |
on: [push, pull_request] | |
jobs: | |
buld-and-test: | |
# Set up operating system | |
runs-on: ubuntu-latest | |
# Define job steps | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ">=3.8.1" | |
- name: setup | |
uses: actions/checkout@v2 | |
- name: setup ffmpeg | |
uses: FedericoCarboni/setup-ffmpeg@v2 | |
- name: Install poetry | |
uses: snok/install-poetry@v1 | |
- name: Install packages | |
run: make deps | |
- name: Linters | |
run: make lint | |
- name: Test with pytest | |
run: make test | |