Skip to content

Bump actions/checkout from 6 to 7 #176

Bump actions/checkout from 6 to 7

Bump actions/checkout from 6 to 7 #176

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
env:
ruby: '3.3.1'
jobs:
test:
name: Test on ${{ matrix.platform.os }} using Xcode ${{ matrix.xcode }}
runs-on: macos-15
env:
xcodeproj: Auth0UniversalComponents.xcodeproj
strategy:
matrix:
platform:
- { os: iOS, scheme: Auth0UniversalComponents.iOS }
- { os: macOS, scheme: Auth0UniversalComponents.macOS }
- { os: visionOS, scheme: Auth0UniversalComponents.visionOS }
xcode:
- '26.2'
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up environment
uses: ./.github/actions/setup
with:
ruby: ${{ env.ruby }}
xcode: ${{ matrix.xcode }}
- name: Run tests
uses: ./.github/actions/test
with:
xcode: ${{ matrix.xcode }}
scheme: ${{ matrix.platform.scheme }}
platform: ${{ matrix.platform.os }}
- name: Convert coverage report
if: ${{ matrix.platform.os == 'iOS' }}
run: bundle exec slather coverage -x --scheme ${{ matrix.platform.scheme }} ${{ env.xcodeproj }}
- name: Upload coverage report
if: ${{ matrix.platform.os == 'iOS' }}
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # pin@7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
test-package:
name: Test Swift package using Xcode ${{ matrix.xcode }}
runs-on: macos-15
strategy:
matrix:
xcode:
- '26.2'
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up environment
uses: ./.github/actions/setup
with:
ruby: ${{ env.ruby }}
xcode: ${{ matrix.xcode }}
- name: Run tests
run: swift test --no-parallel
swiftlint:
name: Lint code with SwiftLint
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Install SwiftLint
run: brew install swiftlint
- name: Run SwiftLint
run: swiftlint lint --reporter github-actions-logging