Skip to content

configured github actions #1

configured github actions

configured github actions #1

Workflow file for this run

name: Run Sanity Tests
on: [push, pull_request]
jobs:
sanity-tests:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m venv .venv
.venv/bin/pip install -r requirements.txt
- name: Run sanity tests
run: |
.venv/bin/pytest -q --tb=short resources/tests/sanity_tests.py