mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-02-04 21:07:40 +01:00
19 lines
274 B
YAML
19 lines
274 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
- name: Checkout Project
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Switch to Xcode 12
|
|
run: sudo xcode-select -s /Applications/Xcode_12.app
|
|
|
|
- name: Run Build
|
|
run: swift build
|