move to instadeep-ci #218
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: Tests and Linters 🧪 | |
on: [ push, pull_request ] | |
jobs: | |
tests-and-linters: | |
name: "Python 3.9 on instadeep-ci" | |
runs-on: instadeep-ci | |
container: | |
image: python:3.9 | |
steps: | |
- name: Install dependencies for viewer test | |
run: apt-get update && apt-get install -y xvfb | |
- name: Checkout flashbax | |
uses: actions/checkout@v3 | |
- name: Install python dependencies 🔧 | |
run: pip install .[dev] | |
- name: List python packages 📦 | |
run: pip list | |
# Workaround for https://github.com/actions/checkout/issues/1169 | |
- run: git config --system --add safe.directory $GITHUB_WORKSPACE | |
- name: Run linters 🖌️ | |
run: pre-commit run --all-files --verbose | |
- name: Run tests 🧪 | |
run: pytest -n 2 --cov=flashbax --cov-report=term-missing --junit-xml=test-results.xml -vv flashbax | |
- name: Run coverage | |
run: | | |
coverage html --directory=coverage_html_report | |
coverage report --fail-under=0.97 |