Skip to content

Commit

Permalink
Merge pull request #15 from jamf/jamf/12-update-gh-actions
Browse files Browse the repository at this point in the history
Update checkout action version, add CODEOWNERS
  • Loading branch information
JacobHearst authored Jun 5, 2023
2 parents 7a6bae7 + e4a42b8 commit 979405c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
name: Build & Test

on: [push]
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main


jobs:
spm:
name: SwiftPM build and test
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build swift packages
run: swift build -v
- name: Run tests
Expand All @@ -16,7 +24,7 @@ jobs:
name: Xcode project build and test
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build xcode project
run: xcodebuild build -scheme 'SubprocessMocks' -derivedDataPath .build
- name: Run tests
Expand All @@ -25,6 +33,6 @@ jobs:
name: Pod lib lint
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Lib lint
run: pod lib lint --verbose Subprocess.podspec
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @jamf/apple-natives-write

0 comments on commit 979405c

Please sign in to comment.