diff options
| author | mo khan <mo.khan@gmail.com> | 2020-05-12 10:41:40 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-05-12 10:44:30 -0600 |
| commit | f9eb937bc7a170c861df90b6ec7d5b0a1657a678 (patch) | |
| tree | 1dfa1b3f3dbaa4189de6632997cc575cab3856da /.github/workflows/ci.yml | |
| parent | e20d0f59ef34dbba8368314aef3ea741466372f1 (diff) | |
Split build steps
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0cf88f3..ec2dc35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,4 +15,13 @@ jobs: - uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - - run: ./bin/cibuild + - name: setup + run: ./bin/setup + - name: compile + run: ./bin/compile + - name: integration + run: ./bin/test spec/integration + - name: unit + run: ./bin/test spec/unit + - name: lint + run: ./bin/lint |
