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:
|
|
|
|
|
|
2020-01-30 14:52:55 +01:00
|
|
|
runs-on: macos-latest
|
2019-08-29 14:21:24 +07:00
|
|
|
|
|
|
|
|
steps:
|
2024-01-03 02:09:21 -05: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
|