Bump danger from 9.4.1 to 9.4.2 #112
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub Actions Virtual Environments | |
# https://github.com/actions/virtual-environments/ | |
name: SwiftPM Integration | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/spm.yml' | |
- 'Package*' | |
- 'Sources/**/*.*' | |
- 'Tests/**/*.*' | |
pull_request: | |
branches: | |
- main | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer | |
jobs: | |
main: | |
name: SwiftPM Build | |
runs-on: macOS-11 | |
steps: | |
- name: git checkout | |
uses: actions/checkout@v4 | |
- name: xcode version | |
run: xcodebuild -version -sdk | |
- name: swift build | |
run: swift build |