Skip to content

chore: add invalid_credentials error #10

chore: add invalid_credentials error

chore: add invalid_credentials error #10

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
swiftlint:
runs-on: ubuntu-latest
container:
image: swift:5.10-noble
steps:
- uses: actions/checkout@v2
- name: Set up swiftlint
run: |
sudo apt-get update && sudo apt-get install -y unzip curl
unzip ci/swiftlint.zip -d /usr/local/bin/
chmod +x /usr/local/bin/swiftlint
- name: Run swiftlint
run: swiftlint lint --strict .
swiftformat:
runs-on: ubuntu-latest
container:
image: swift:5.10-noble
steps:
- uses: actions/checkout@v2
- name: Set up swiftformat
run: |
sudo apt-get update && sudo apt-get install -y unzip curl
unzip ci/swiftformat.zip -d /usr/local/bin/
chmod +x /usr/local/bin/swiftformat
- name: Run swiftformat
run: swiftformat --lint .