Update .swiftlint.yml (#178) #906
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
name: Continuous Integration | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
full-build: | |
runs-on: macos-12 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Full Build | |
run: ./fullbuild.sh | |
- name: Smoke Test | |
run: ./smoketest.sh | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
xcframework: | |
runs-on: macos-12 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Print Swift version | |
run: swift --version | |
- name: Build xcframework | |
working-directory: ./SplunkRumWorkspace/SplunkRum | |
run: ./build_binaries.sh | |
- name: Upload xcframework | |
uses: actions/[email protected] | |
with: | |
name: SplunkOtel.xcframework | |
path: ./SplunkRumWorkspace/SplunkRum/xcframeworks/SplunkOtel.xcframework | |
check_links: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Link Checker | |
uses: lycheeverse/[email protected] | |
with: | |
fail: true |