mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
28 lines
429 B
YAML
28 lines
429 B
YAML
name: Validate Swift Package
|
|
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
FORCE_COLOR: true
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: macOS-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- name: Build
|
|
run: swift build
|
|
|
|
test:
|
|
name: Test
|
|
runs-on: macOS-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- name: Test
|
|
run: swift test
|