Skip to content

Remove outdated information #1338

Remove outdated information

Remove outdated information #1338

Workflow file for this run

name: CG CI
on:
pull_request:
push:
branches:
- master
jobs:
tests:
runs-on: 8_core_linux
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: false
- name: Install Dependencies
run: poetry install --no-interaction --all-extras
- name: Test with Pytest
run: |
pytest -n logical -m "not integration"
pytest -m integration