fix: account error handling and refactoring #16
Workflow file for this run
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
# Copyright (c) 2024 Anass Bouassaba. | |
# | |
# Use of this software is governed by the Business Source License | |
# included in the file LICENSE in the root of this repository. | |
# | |
# As of the Change Date specified in that file, in accordance with | |
# the Business Source License, use of this software will be governed | |
# by the GNU Affero General Public License v3.0 only, included in the file | |
# AGPL-3.0-only in the root of this repository. | |
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: Lint Using 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: Lint Using swiftformat | |
run: swiftformat --lint . |