Files
todo.txt-cli/.github/workflows/tests.yml
Ingo Karkat 26a82c3c2f Build: ENH: Enable manual workflow run
Helpful for testing.
2024-09-21 12:39:22 +02:00

22 lines
397 B
YAML

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
jobs:
test:
strategy:
matrix:
platform: [ubuntu-24.04, macos-14]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- run: make
- run: make dist
- run: make test