Skip to content

Commit

Permalink
remove input from action name
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Nov 22, 2023
1 parent 516feb8 commit 740eaa8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/archive-test-results/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Archive Unit Tests / Python ${{ inputs.python-version }}
name: Archive Test Results
inputs:
python-version:
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/run-unit-tests/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Unit Tests / Python ${{ inputs.python-version }}
name: Run Unit Tests
inputs:
python-version:
required: true
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,12 @@ jobs:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: ./.github/actions/run-unit-tests
- name: Run Unit Tests / Python ${{ matrix.python-version }}
uses: ./.github/actions/run-unit-tests
with:
python-version: ${{ matrix.python-version }}
- uses: ./.github/actions/archive-test-results
- name: Archive Unit Tests / Python ${{ matrix.python-version }}
uses: ./.github/actions/archive-test-results
with:
python-version: ${{ matrix.python-version }}
file-name-stub: unit_results
Expand Down

0 comments on commit 740eaa8

Please sign in to comment.