Skip to content

waveform: Implement scaling (#7) #6

waveform: Implement scaling (#7)

waveform: Implement scaling (#7) #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'releases/**'
workflow_call:
workflow_dispatch:
jobs:
check_nitypes:
name: Check
uses: ./.github/workflows/check_nitypes.yml
run_unit_tests:
name: Run unit tests
uses: ./.github/workflows/run_unit_tests.yml
needs: [check_nitypes]
report_test_results:
name: Report test results
uses: ./.github/workflows/report_test_results.yml
needs: [run_unit_tests]
if: always()