Skip to content

Merge pull request #11 from litteratum/10-allow-arbitrary-body #27

Merge pull request #11 from litteratum/10-allow-arbitrary-body

Merge pull request #11 from litteratum/10-allow-arbitrary-body #27

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- "**"
tags-ignore:
- "v.*.*.*"
jobs:
test:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.9", "3.11", "3.12"]
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python v${{matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version}}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install nox
run: pip install nox
- name: Run nox
run: nox --no-error-on-missing-interpreters