Skip to content

CI dependencies

CI dependencies #2

Workflow file for this run

name: background_removal_CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
make install
- name: Lint with pyLint
run: |
make lint
- name: Format code
run: |
make format
- name: Sort imports with isort
run: |
make isort