mirror of
https://github.com/TextureGroup/Texture.git
synced 2026-04-07 19:17:39 +00:00
24 lines
532 B
YAML
24 lines
532 B
YAML
name: Danger
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
buildsh:
|
|
env:
|
|
DEVELOPER_DIR: /Applications/Xcode_11.app/Contents/Developer
|
|
strategy:
|
|
matrix:
|
|
mode: [danger]
|
|
include:
|
|
- mode: danger
|
|
name: Run Danger
|
|
name: ${{ matrix.name }}
|
|
runs-on: macOS-latest
|
|
steps:
|
|
- name: Checkout the Git repository
|
|
uses: actions/checkout@v1
|
|
- name: Run build script
|
|
run: ./build.sh ${{ matrix.mode }}
|
|
env:
|
|
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|