fix deploy #1500
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
push: {branches-ignore: ["**_pr"]} | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
python: ["3.10", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Initialize Python and Poetry | |
uses: ./.github/actions/init | |
with: | |
python-version: "${{ matrix.python }}" | |
- name: Run tests | |
env: | |
PY_COLORS: 1 | |
run: make test | |
- name: Run lints | |
run: make lint | |
- name: Run integration tests | |
run: make it | |
- name: Build docs | |
run: make docs |