Skip to content

Update publish.yml

Update publish.yml #89

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
name: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Get Poetry
uses: abatilo/[email protected]
- name: Install Dependencies
run: poetry install
- name: Run Tests
run: poetry run pytest