Skip to content

Commit

Permalink
Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenhuy committed Aug 17, 2019
1 parent 41915d5 commit d67280d
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,32 @@ name: CI
on: push

jobs:
tests:
name: Build and run tests
buildsh:
strategy:
matrix:
mode: [tests]
include:
- mode: tests
name: Build and run tests
name: ${{ matrix.name }}
runs-on: macOS-10.14
steps:
- uses: actions/checkout@v1
- run: ./build.sh tests
- run: ./build.sh ${{ matrix.mode }}
dynamic-framework:
name: Build Texture as a dynamic framework
needs: tests
runs-on: macOS-10.14
steps:
- uses: actions/checkout@v1
- run: ./build.sh framework
static-library:
name: Build Texture as a static library
needs: tests
runs-on: macOS-10.14
steps:
- uses: actions/checkout@v1
- run: ./build.sh life-without-cocoapods
carthage:
name: Verify that Carthage works
needs: tests
runs-on: macOS-10.14
steps:
- uses: actions/checkout@v1
Expand All @@ -35,7 +38,6 @@ jobs:
matrix:
mode: [examples-pt1, examples-pt2, examples-pt3, examples-pt4]
name: Build examples (${{ matrix.mode }})
needs: tests
runs-on: macOS-10.14
steps:
- uses: actions/checkout@v1
Expand Down

0 comments on commit d67280d

Please sign in to comment.