Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Nastiiasaenko authored Dec 13, 2023
1 parent 27fe4f9 commit c3b6382
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
install:
pip install --upgrade pip &&\
pip install -r requirements.txt

#install:
# pip install --upgrade pip &&\
# pip install -r requirements.txt
#
name: Python CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install build dependencies
run: sudo apt-get install -y build-essential gcc
- name: Install packages
run: make install
- name: Format
run: make format
- name: Lint
run: make lint
- name: Test
run: make test

0 comments on commit c3b6382

Please sign in to comment.