Skip to content

run gha on push to branch #1

run gha on push to branch

run gha on push to branch #1

Workflow file for this run

name: Lint and Test - Start
on:
push:
branches:
- 6/ci-completed
jobs:
lint_and_test_ch6:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
cache-dependency-path: requirements.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint code
run: make lint
- name: Run tests
run: make test