Skip to content

Commit

Permalink
Fixes to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmackaij committed Feb 13, 2024
1 parent 8200743 commit 24e1d93
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ "ubuntu-latest", "windows-latest"]
python-version: [ 3.8, 3.9, 3.10, 3.11, 3.12]
os: [ 'ubuntu-latest', 'windows-latest']
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: '3.8'
cache: 'pip'
- name: Install python dependencies
run: |
Expand All @@ -32,11 +32,11 @@ jobs:
poetry config virtualenvs.create false
poetry install
- name: Create distribution
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8'
run: |
inv build
- uses: actions/upload-artifact@v4
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8'
with:
name: openapitools-wheel
path: dist/robotframework_openapitools-*-py3-none-any.whl
Expand Down

0 comments on commit 24e1d93

Please sign in to comment.