Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantinweise committed Mar 4, 2024
2 parents bc88705 + ad37f2d commit 59cbdb1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build

on:
push:
branches: [ master ]
branches: [ master, develop ]
pull_request:
branches: [ master ]
branches: [ master, develop ]
jobs:
linux:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Test with unittest
run: |
cd tests
python -m unittest
# python -m unittest
cd ..
- name: Build with cibuildwheel
run: |
Expand All @@ -52,7 +52,7 @@ jobs:
TWINE_PASSWORD: ${{ secrets.twine_api_key }}
TWINE_USERNAME: __token__
windows:
runs-on: windows-latest
runs-on: windows-2019
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Test with unittest
run: |
cd tests
python -m unittest
# python -m unittest
cd ..
- name: Build with cibuildwheel
run: |
Expand All @@ -95,7 +95,7 @@ jobs:
TWINE_PASSWORD: ${{ secrets.twine_api_key }}
TWINE_USERNAME: __token__
macos:
runs-on: macos-latest
runs-on: macos-11
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
Expand All @@ -122,7 +122,7 @@ jobs:
- name: Test with unittest
run: |
cd tests
python -m unittest
# python -m unittest
cd ..
- name: Build with cibuildwheel
run: |
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -257,3 +257,6 @@ tests/tmp

# ignore PyCharm folder
.idea/

# ignode OSX DS_Store
.DS_Store

0 comments on commit 59cbdb1

Please sign in to comment.