-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from ReubenFrankel/fix/ci
ci: Fix broken workflow jobs
- Loading branch information
Showing
2 changed files
with
13 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,9 @@ jobs: | |
python-version: ${{ matrix.python-version }} | ||
cache: poetry | ||
- name: Install dependencies | ||
run: poetry install | ||
run: | | ||
poetry env use ${{ matrix.python-version }} | ||
poetry install | ||
- name: Run pre-commit checks | ||
uses: pre-commit/[email protected] | ||
smoke-test: | ||
|
@@ -51,10 +53,12 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install poetry | ||
run: pipx install poetry | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install meltano | ||
run: pipx install meltano | ||
run: pipx install --python ${{ matrix.python-version }} meltano | ||
- name: Meltano install | ||
run: meltano install | ||
- name: Smoke test | ||
|
@@ -83,7 +87,9 @@ jobs: | |
python-version: ${{ matrix.python-version }} | ||
cache: poetry | ||
- name: Install dependencies | ||
run: poetry install | ||
run: | | ||
poetry env use ${{ matrix.python-version }} | ||
poetry install | ||
- name: Start MongoDB | ||
uses: supercharge/[email protected] | ||
with: | ||
|
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