Skip to content

Workflow file for this run

name: Test
on:
- push
- workflow_dispatch
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: 'pip'
- name: Install dependencies
run: pip install .
- name: Build executable
uses: Nuitka/Nuitka-Action@main
with:
nuitka-version: main
script-name: src/can_explorer
python-flag: -m
standalone: true
- name: Upload apps
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }} Build
path: |
build/*.exe
build/*.bin
build/*.app/**/*