Skip to content

Drop CirrusCI config #57

Drop CirrusCI config

Drop CirrusCI config #57

Workflow file for this run

name: Tests
on:
push:
branches:
- "**"
tags-ignore:
- "**"
pull_request:
jobs:
Linux:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: gi0baro/[email protected]
with:
virtualenvs-in-project: true
- name: Install dependencies
run: |
poetry install -v
- name: Test
run: |
poetry run pytest -v tests
MacOS:
runs-on: macos-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: gi0baro/[email protected]
with:
virtualenvs-in-project: true
- name: Install dependencies
run: |
poetry install -v
- name: Test
run: |
poetry run pytest -v tests
Windows:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: gi0baro/[email protected]
with:
virtualenvs-in-project: true
- name: Install dependencies
shell: bash
run: |
poetry install -v
- name: Test
shell: bash
run: |
poetry run pytest -v tests