Skip to content

Add new error codes to handle HTTP 422 #23

Add new error codes to handle HTTP 422

Add new error codes to handle HTTP 422 #23

Workflow file for this run

name: "Verify PR"
on:
pull_request:
branches:
- 'main'
- 'develop'
- 'release/*'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:

Check failure on line 14 in .github/workflows/verify-pr.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/verify-pr.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
lint:
name: SwiftLint
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Lint Edited Files
run: bash .github/scripts/lintEditedFiles.sh
verify-pr:
name: Verify PR
runs-on: macos-latest
needs: lint
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build the Package
run: |
set -o pipefail && xcodebuild -scheme CheckoutNetwork -destination "platform=iOS Simulator,name=iPhone 14 Pro,OS=latest"
- name: Run Tests
run: |
set -o pipefail && xcodebuild -scheme CheckoutNetwork -destination "platform=iOS Simulator,name=iPhone 14 Pro,OS=latest" test