Initial commit
This commit is contained in:
commit
c1e7415871
56 changed files with 3225 additions and 0 deletions
21
.github/workflows/lint-swift.yml
vendored
Normal file
21
.github/workflows/lint-swift.yml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
name: Swift Lint
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- "*"
|
||||
jobs:
|
||||
lint:
|
||||
name: Swift Lint
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/realm/swiftlint:latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
ssh-key: ${{ secrets.DEPLOY_KEY }}
|
||||
- name: Lint
|
||||
run: swiftlint lint --reporter github-actions-logging
|
||||
Loading…
Add table
Add a link
Reference in a new issue