Skip to content

Github action added

Github action added #2

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: Swift
on:
pull_request: { types: [opened, reopened, synchronize, ready_for_review] }
push: { branches: [ main ] }
jobs:
linux:
runs-on: ubuntu-latest
container: swift:5.9-jammy
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v