Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ jobs:
run: sudo apt-get install make
- name: checkout
uses: actions/checkout@v4
- name: create-venv
run: |
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
- name: run_make
run: |
make ci_pull_request
source .venv/bin/activate
make ci-pull-request
10 changes: 8 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ jobs:
run: sudo apt-get install make
- name: checkout
uses: actions/checkout@v4
- name: run_make
- name: create-venv
run: |
make ci_push
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
- name: run-make
run: |
source .venv/bin/activate
make ci-push
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,11 @@ dmypy.json
# Cython debug symbols
cython_debug/

# stamp files for make
.stamps/

.idea/
.vscode/

# git version
fast_api/git_version.py
fast_api/git_version.py
Empty file removed .stamps/install-requirements-
Empty file.
3 changes: 0 additions & 3 deletions .stamps/srv.env

This file was deleted.

Loading
Loading