mirror of
https://github.com/facebookincubator/QuickLayout
synced 2026-04-21 13:37:22 +00:00
Summary: Be able to run test. https://github.com/facebookincubator/QuickLayout/issues/2 Pull Request resolved: https://github.com/facebookincubator/QuickLayout/pull/4 Reviewed By: saadhzahid Differential Revision: D88258295 Pulled By: constantine-fry fbshipit-source-id: 42fb707a4299bf22e20310d5d79368950ddb42d2
27 lines
444 B
YAML
27 lines
444 B
YAML
name: Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-and-test:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Swift
|
|
uses: swift-actions/setup-swift@v2
|
|
with:
|
|
swift-version: '6.0'
|
|
|
|
- name: Build
|
|
run: swift build --build-tests
|
|
|
|
- name: Run tests
|
|
run: swift test
|