Skip to content

Commit

Permalink
Merge pull request #47 from kaitj/maint/actions-wf
Browse files Browse the repository at this point in the history
Update actions workflows to v0.3.1
  • Loading branch information
kaitj authored Oct 25, 2023
2 parents 4753b36 + 5ac223d commit ede2516
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/assign_reviewers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ on:
types: [opened, ready_for_review]
jobs:
assign-reviewer:
uses: khanlab/actions/.github/workflows/workflow-pr_task-assignReviewer.yml@v0.2.1
uses: khanlab/actions/.github/workflows/workflow-pr_task-assignReviewer.yml@v0.3.1
4 changes: 2 additions & 2 deletions .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ on:
jobs:
bump-version:
if: github.event.pull_request.merged == true
uses: khanlab/actions/.github/workflows/workflow-version_task-semverGithub.yml@v0.2.1
uses: khanlab/actions/.github/workflows/workflow-version_task-semverGithub.yml@v0.3.1
secrets:
BP-PAT: ${{ secrets.BP_PAT_TOKEN }}
BP_PAT: ${{ secrets.BP_PAT_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
required: false
jobs:
release-package:
uses: khanlab/actions/.github/workflows/workflow-release_task-publishGithub.yml@v0.2.1
uses: khanlab/actions/.github/workflows/workflow-release_task-publishGithub.yml@v0.3.1
with:
comments: ${{ github.event.inputs.comments }}
secrets:
BP-PAT: ${{ secrets.BP_PAT_TOKEN }}
BP_PAT: ${{ secrets.BP_PAT_TOKEN }}
deploy-pypi:
uses: khanlab/actions/.github/workflows/workflow-release_task-deployPypi.yml@v0.2.1
uses: khanlab/actions/.github/workflows/workflow-release_task-deployPypi.yml@v0.3.1
secrets:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Python environment
uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.2.1
uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.3.1
with:
python-version: "3.10"
- name: yamlfix
Expand All @@ -34,10 +34,10 @@ jobs:
test-split: ["1", "2", "3", "4", "5"]
steps:
- name: Setup Python environment
uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.2.1
uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.3.1
with:
python-version: ${{ matrix.python-version }}
install-library: true
install-library: "true"
- name: Perform unit testing
run: >-
poetry run pytest -n auto --splits 5 --group ${{ matrix.test-split }} --doctest-modules --cov=afids_utils
Expand Down

0 comments on commit ede2516

Please sign in to comment.