Skip to content

Commit

Permalink
Udpated build options, added additional versions of Python
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklise committed Nov 18, 2023
1 parent 98b81ad commit 12a5ef9
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,19 @@ on:
pull_request:
branches:
- '**'

schedule:
- cron: '0 0 1 * *'

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: |
python --version
Expand All @@ -32,7 +34,7 @@ jobs:
python setup.py bdist_wheel
ls dist/*
- name: Save wheel
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheel
path: dist/chama*.whl
Expand Down Expand Up @@ -67,7 +69,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, 3.10, 3.11]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -103,7 +105,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: actions/checkout@v2
Expand Down Expand Up @@ -151,7 +153,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- uses: actions/checkout@v2
- name: Install coverage
run: |
Expand Down

0 comments on commit 12a5ef9

Please sign in to comment.