Skip to content

dependabotの有効化 #4

dependabotの有効化

dependabotの有効化 #4

Workflow file for this run

name: Python CI
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: 'pyproject.toml'
cache: 'poetry'
- name: Install dependencies
run: poetry install
- name: Check lint
run: make lint