Skip to content

Add concurency support for the build-linux and build-macos workflows #141

Add concurency support for the build-linux and build-macos workflows

Add concurency support for the build-linux and build-macos workflows #141

Workflow file for this run

name: build-linux
on:
push:
branches:
- "main"
concurrency:
group: build-linux
cancel-in-progress: true
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: swift build
- name: Test
run: swift test