Files
fastapi-cache/.github/workflows/ci.yml
2023-02-15 10:53:24 +08:00

17 lines
385 B
YAML

name: ci
on: [ push, pull_request ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install and configure Poetry
run: |
pip install -U pip poetry
poetry config virtualenvs.create false
- name: CI
run: make ci