Skip to content

Commit

Permalink
simplifies and updates build script
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Nov 18, 2023
1 parent 5acea77 commit e5939c1
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]
#os: [ubuntu-latest, macos-latest, windows-latest]
#python-version: ["3.9", "3.10","3.11"]
os: [ubuntu-latest]
python-version: ["3.10"]


steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pip
Expand Down

0 comments on commit e5939c1

Please sign in to comment.