Skip to content

Commit

Permalink
feat: github action enforce PR continuous integration rules
Browse files Browse the repository at this point in the history
* configure github action to run continuous integration pipeline
  • Loading branch information
FabienArcellier committed Feb 10, 2024
1 parent 9c4cf6e commit 287f80d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ jobs:
- name: update package manager & install python3 environment
run: |
sudo pip install poetry
poetry install
poetry install
- name: run continuous integration pipeline
run: |
poetry run alfred ci
6 changes: 5 additions & 1 deletion .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ jobs:
- name: update package manager & install python3 environment
run: |
pip install poetry
poetry install
poetry install
- name: run continuous integration pipeline
run: |
poetry run alfred ci
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ jobs:
- name: update package manager & install python3 environment
run: |
sudo pip install poetry
poetry install
poetry install
- name: run continuous integration pipeline
run: |
poetry run alfred ci

0 comments on commit 287f80d

Please sign in to comment.