Files
starter-workflows/ci/swift.yml
T

23 lines
449 B
YAML
Raw Normal View History

2022-10-18 18:19:20 +05:30
# This workflow will build a Swift project
2022-10-10 11:12:22 +00:00
# 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-13 12:12:41 -07:00
branches: [ $default-branch ]
2020-02-12 13:26:01 -05:00
pull_request:
2020-07-13 12:12:41 -07: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:
- 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