Skip to content

Commit

Permalink
Merge pull request #1 from suitetecsa/lesclaz-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
lesclaz authored Jul 20, 2023
2 parents 68b605f + 272eacb commit f316f30
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# 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:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: macos-12

steps:
- uses: actions/checkout@v3
- name: Setup Swift
# You may pin to the exact commit or the version.
# uses: swift-actions/setup-swift@65540b95f51493d65f5e59e97dcef9629ddf11bf
uses: swift-actions/setup-swift@v1.23.0
with:
# Swift version to configure
swift-version: 5.8
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

0 comments on commit f316f30

Please sign in to comment.