Merge branch 'main' into upgrade-requirements #802
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: Test | |
on: [push] | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install python dependencies | |
run: sudo apt-get update && sudo apt-get install -y python3-setuptools python3-pip && make install-deps | |
- name: Test | |
run: make test | |
- name: Test-e2e | |
run: make e2e |