Skip to content

feat: configured CI/CD pipeline (#1) #5

feat: configured CI/CD pipeline (#1)

feat: configured CI/CD pipeline (#1) #5

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: ["main", "github-action"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
- name: Install dependencies
run: pdm install && pip install ruff
- name: Lint with ruff
run: |
ruff check .