File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will build a Swift project
2+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
3+
4+ name : Swift
5+
6+ on :
7+ push :
8+ branches : [ "main" ]
9+ pull_request :
10+ branches : [ "main" ]
11+
12+ jobs :
13+ build :
14+
15+ runs-on : macos-latest
16+
17+ steps :
18+ - uses : actions/checkout@v4
19+ - name : Setup Swift environment
20+ uses : swift-actions/setup-swift@v2
21+ with :
22+ swift-version : " 6.2"
23+ - name : Build
24+ run : swift build -v
25+ - name : Run tests
26+ run : swift test -v
Original file line number Diff line number Diff line change 11# FifthEdition
2+ ![ GitHub Actions Workflow Status] ( https://img.shields.io/github/actions/workflow/status/keybuk/FifthEdition/swift.yml )
3+
24Swift support for 5eTools schema
You can’t perform that action at this time.
0 commit comments