Skip to content

Commit

Permalink
Split integration-checks workflow into build-macos and build-linux
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcristea committed Jan 11, 2024
1 parent 124dc09 commit b61b0d5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 13 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: build-linux

on:
push:
branches:
- "main"

jobs:
linux:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: swift build
- name: Test
run: swift test
Original file line number Diff line number Diff line change
@@ -1,24 +1,13 @@
name: integration-checks
name: build-macos

on:
push:
branches:
- "main"

jobs:
linux:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: swift build
- name: Test
run: swift test

macos:
runs-on: macos-12
runs-on: macos-latest

steps:
- name: Checkout
Expand Down

0 comments on commit b61b0d5

Please sign in to comment.