refactor!: restructure automatic context decorator #1070
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: CI | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
push: | |
branches: | |
- 'main' | |
jobs: | |
API-diff: | |
strategy: | |
matrix: | |
module: ["ConfidenceProvider", "Confidence"] | |
runs-on: macOS-latest | |
steps: | |
- name: install sourcekitten | |
run: brew install sourcekitten | |
- uses: actions/checkout@v3 | |
- name: webfactory/ssh-agent | |
uses: webfactory/ssh-agent@v0.7.0 | |
with: | |
ssh-private-key: ${{ secrets.SDK_REPO_PRIVATE_KEY }} | |
- name: Run public API diff | |
run: scripts/api_diff.sh ${{ matrix.module }} | |
Tests: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: webfactory/ssh-agent | |
uses: webfactory/ssh-agent@v0.7.0 | |
with: | |
ssh-private-key: ${{ secrets.SDK_REPO_PRIVATE_KEY }} | |
- name: Build and Test | |
env: | |
CLIENT_TOKEN: ${{ secrets.CONFIDENCE_CLIENT_TOKEN }} | |
run: scripts/run_tests.sh $CLIENT_TOKEN | |
DemoApp: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: webfactory/ssh-agent | |
uses: webfactory/ssh-agent@v0.7.0 | |
with: | |
ssh-private-key: ${{ secrets.SDK_REPO_PRIVATE_KEY }} | |
- name: Build Demo App | |
run: ConfidenceDemoApp/scripts/build.sh | |
SwiftLint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: GitHub Action for SwiftLint | |
uses: norio-nomura/action-swiftlint@3.2.1 | |
with: | |
args: --strict --config .swiftlint.yml |