Skip to content

Commit

Permalink
Update readme (#82)
Browse files Browse the repository at this point in the history
* Update docs with variables and units

* Fix warning

* Update build

* Update README

* Update build

* Update build

* Update build
  • Loading branch information
wpreimes authored Apr 26, 2024
1 parent 63462d0 commit ee244e2
Show file tree
Hide file tree
Showing 6 changed files with 249 additions and 100 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,24 @@ on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # daily
#schedule:
# - cron: '0 0 * * *' # daily

jobs:
build:
name: Build py${{ matrix.python-version }} @ ${{ matrix.os }} 🐍
name: py${{ matrix.python-version }} @ ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: ["ubuntu-latest"]
include:
- os: "ubuntu-latest"
python-version: '3.8' # first supported
- os: "ubuntu-latest"
python-version: '3.12' # latest supported
- os: "windows-latest"
python-version: '3.11'
python-version: '3.12' # latest supported
- os: "macos-latest"
python-version: '3.12' # latest supported
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -56,7 +60,7 @@ jobs:
- name: Install package and test
shell: bash -l {0}
run: |
pip install .
python setup.py develop
pytest
- name: Upload Coverage
shell: bash -l {0}
Expand Down
Loading

0 comments on commit ee244e2

Please sign in to comment.