Skip to content

Commit

Permalink
GitHub CI workflow (#45)
Browse files Browse the repository at this point in the history
* Create GitHub CI workflow
  • Loading branch information
timbaev authored Feb 16, 2023
1 parent 1d2cfeb commit 6d3fd52
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "CI"

on:
push:
branches:
- master
pull_request:
branches:
- master

env:
LC_CTYPE: en_US.UTF-8
LANG: en_US.UTF-8

jobs:
macOS:
name: macOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: Swift
uses: swift-actions/setup-swift@v1
- name: Preparation
run: set -o pipefail
- name: Build
run: make build

0 comments on commit 6d3fd52

Please sign in to comment.