Audit Xcode build logs for GitHub Actions
- Swift 5.3
- macOS 10.15
# .github/workflows/test.yml
name: Test
on:
push:
branches:
- main
tags-ignore:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
name: Run tests
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install xcaudit
uses: Alexander-Ignition/XCAudit@main
- name: Build and test
run: swift test --enable-code-coverage --disable-automatic-resolution 2>&1 | xcaudit
shell: bash
MIT