Skip to content

Forward Ctrl-C to running recipe process #4

Forward Ctrl-C to running recipe process

Forward Ctrl-C to running recipe process #4

Workflow file for this run

name: ci
on:
push:
branches: ['**']
pull_request:
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Show Swift version
run: swift --version
- name: Test
run: swift test
- name: Build release binary
run: swift build -c release