Skip to content

Update publish_release.yaml #447

Update publish_release.yaml

Update publish_release.yaml #447

Workflow file for this run

name: Tests
on: [pull_request, push]
jobs:
tests:
name: "Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install -U setuptools pip
python -m pip install -e .[test]
- name: Tests
run: "python -m pytest"