Skip to content

Commit

Permalink
Add GHA CI matrix for macos and ubuntu (#37)
Browse files Browse the repository at this point in the history
* Add GHA CI matrix for macos and ubuntu
* Fix old typo in env var name
  • Loading branch information
iakov authored Jul 3, 2024
1 parent 785ae56 commit afdf487
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,22 @@ on: [ workflow_dispatch, push, pull_request ]

jobs:
build:

runs-on: windows-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.9']
runs-on: ${{ matrix.os }}
env:
Script_Name: TRIKLobeServer
Python_Version: 3.9 # 3.10 is missing pre-built `tflite-runtime`
SCRIPT_NAME: TRIKLobeServer

steps:
- uses: actions/checkout@v4
- uses: benjlevesque/[email protected]
- name: Set up Python ${{ env.PYTHON_VERSION }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python --version
Expand Down

0 comments on commit afdf487

Please sign in to comment.