-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update `pull_request` triggers types to only ones which correspond to code changes; - Extract jobs from `default.yml` workflow to re-usable `test.yml` to be able to split default workflow to two workflow with different set of triggers - "schedule" and "pull_request/push"
- Loading branch information
1 parent
39219a5
commit a0efcdc
Showing
3 changed files
with
47 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: Backend Skeleton Scheduled Check | ||
on: | ||
schedule: | ||
- cron: '0 14 * * MON' | ||
|
||
jobs: | ||
run-checks: | ||
uses: django-stars/backend-skeleton/.github/workflows/test.yml@improve-github-workflow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Test | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Python 3.12.5 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12.5 | ||
- name: Install Python dependencies | ||
run: | | ||
python3 -m venv venv | ||
source ./venv/bin/activate | ||
pip install -U pip | ||
pip install -r ./requirements.txt | ||
- name: Run tests on hooks | ||
run: | | ||
source ./venv/bin/activate | ||
inv test.hooks | ||
- name: Run tests on building project | ||
run: | | ||
source ./venv/bin/activate | ||
cookiecutter --no-input --overwrite-if-exists --output-dir build . | ||
cd build/awesome | ||
cp ./api/.env.example ./api/.env | ||
make api-test |