Skip to content

initial commit

initial commit #1

Workflow file for this run

name: Run tests
on:
push:
branches: [ master, main, nightly ]
pull_request:
branches: [ master, main, nightly ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.8
cache: 'pip'
cache-dependency-path: requirements/dev.txt
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools
- name: Install dependencies
run: pip install -r requirements/dev.txt
- name: Run all tests
run: make test