Merge pull request #2 from winter-telescope/initial-setup #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/ci.yml | |
name: CI Workflow | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the code from the repository | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# Set up Python environment | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
# Install Poetry | |
- name: Install Poetry | |
run: | | |
pip install poetry | |
# Install dependencies using Poetry | |
- name: Install dependencies | |
run: | | |
poetry install | |
# Lint the code using pylint | |
- name: Lint with pylint | |
run: | | |
poetry run pylint src | |
# Run Ruff for fast linting | |
- name: Run Ruff | |
run: | | |
poetry run ruff . | |
# Format code with Black | |
- name: Format with Black | |
run: | | |
poetry run black --check . | |
# Run tests with pytest | |
- name: Run tests | |
run: | | |
poetry run pytest |