Files
starter-workflows/ci/swift.yml
T

23 lines
449 B
YAML
Raw Normal View History

2022-10-20 04:29:35 +00:00
# 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
2019-08-29 14:21:24 +07:00
name: Swift
2020-02-12 13:26:01 -05:00
on:
push:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-02-12 13:26:01 -05:00
pull_request:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2019-08-29 14:21:24 +07:00
jobs:
build:
runs-on: macos-latest
2019-08-29 14:21:24 +07:00
steps:
2024-04-25 16:52:34 +00:00
- uses: actions/checkout@v4
2019-08-29 14:21:24 +07:00
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v