Skip to content

Action: Xcode 15.2 #104

Action: Xcode 15.2

Action: Xcode 15.2 #104

Workflow file for this run

name: Build
on:
push:
branches: [ master, develop ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Xcode 15
run: |
ls /Applications
sudo xcode-select -s '/Applications/Xcode_15.1.app/Contents/Developer'
xcodebuild -version
- name: Build
run: sh build.sh
- name: Test
run: |
swift test --enable-code-coverage -v
xcrun llvm-cov export -format="lcov" .build/debug/DLogPackageTests.xctest/contents/macos/DLogPackageTests -instr-profile .build/debug/codecov/default.profdata -ignore-filename-regex='Tests' -ignore-filename-regex='Net' > info.lcov
bash <(curl -s https://codecov.io/bash)