Skip to content

create main screen

create main screen #4

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Lint
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
lint:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install swift-format
run: brew install swift-format
- name: Lint
run: make lint