Spaces:
Sleeping
Sleeping
File size: 487 Bytes
74c716c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
name: Project CICD
run-name: ${{ github.actor }} - CICD
on: [push]
jobs:
#
# --- Code-linting
lint-code:
runs-on: ubuntu-latest
steps:
# Checkout repository
- uses: actions/checkout@v3
# Install Python
- uses: actions/setup-python@v4
with:
python-version: "3.9"
# Install python dependencies
- name: Install dependencies
run: |
make requirements
make pre-commit-install
make lint
|