SPT-1998 Swift cuncurrency support #51
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
# Controls when the action will run. | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
types: [ opened, edited, synchronize, reopened ] | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Init | |
run: | | |
make init | |
- name: Force select xcode 15 | |
run: | | |
sudo xcode-select -switch /Applications/Xcode_15.2.app | |
- name: Build | |
run: | | |
make build | |
- name: SPM Build | |
run: | | |
make spm_build | |
- name: Tests | |
run: | | |
make test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1.2.1 | |
- name: documentation | |
if: github.ref == 'refs/heads/master' | |
run: | | |
make doc | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v4 | |
with: | |
author_name: chausovSurfStudio | |
author_email: chausov@surf.dev | |
message: "Updates for documentation" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |