Skip to content

Add initial workflows for CI #2

Add initial workflows for CI

Add initial workflows for CI #2

Workflow file for this run

name: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
# build:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - name: Build
# run: swift build -v
# - name: Run tests
# run: swift test -v
lint:
runs-on: ubuntu-latest
container: swiftlang/swift:nightly-6.0-jammy
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: apt install make -y
- name: Lint
run: make lint