Skip to content

Create dependabot.yml #7

Create dependabot.yml

Create dependabot.yml #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
poetry-version: ["1.6.1"]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install the project dependencies
run: poetry install
- name: Build project
run: poetry build
- name: Tests
run: poetry run pytest