Skip to content

Commit

Permalink
tries fixing build script
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Aug 22, 2024
1 parent 9316ccc commit 73f2b10
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,27 @@ jobs:
#os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
#python-version: [ '3.9', '3.10', '3.11', '3.12' ]
python-version: ["3.10"]
python-version: ['3.10']

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: install
run: |
scripts/install
- name: doc
run: |
scripts/doc
- name: Run tests
run: |
scripts/test

0 comments on commit 73f2b10

Please sign in to comment.