Skip to content

Commit

Permalink
Fix CI & CD
Browse files Browse the repository at this point in the history
  • Loading branch information
neoxelox committed Feb 7, 2024
1 parent 58c006f commit 3d98b11
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
- name: Setup Scripts 🧩
run: |
poetry install
inv env.switch ci
inv tool.install ci-int --yes
poetry run inv env.switch ci
poetry run inv tool.install ci-int --yes
- name: Lint 🪶
run: inv lint
run: poetry run inv lint

- name: Test 🧪
run: inv test
run: poetry run inv test
8 changes: 4 additions & 4 deletions .github/workflows/publication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
- name: Setup Scripts 🧩
run: |
poetry install
inv env.switch ci
inv tool.install ci-dep --yes
poetry run inv env.switch ci
poetry run inv tool.install ci-dep --yes
- name: Build 🏗️
run: inv build
run: poetry run inv build

- name: Publish 🚀
run: inv publish
run: poetry run inv publish

0 comments on commit 3d98b11

Please sign in to comment.