summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorCan Eldem <eldemcan@users.noreply.github.com>2020-05-18 10:04:25 +0100
committerGitHub <noreply@github.com>2020-05-18 10:04:25 +0100
commitbaa882c452ea6311b4c934ca388e04757c7c436d (patch)
tree2322da54fb505427915c65f296eb1a88afdd533b /.github
parent6b392af62854d28b9f12fe292e21b79baa25c63b (diff)
parentf1cbf51f1a185d70c45959c3e2199b29ccbacd1d (diff)
Merge pull request #20 from spandx/bugs-bunnyv0.13.2
Fix bugs.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml31
1 files changed, 26 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5df3da6..848aa3f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
ruby: [ '2.5', '2.6', '2.7' ]
- name: Ruby ${{ matrix.ruby }}
+ name: RSpec Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
with:
@@ -17,9 +17,30 @@ jobs:
ruby-version: ${{ matrix.ruby }}
- name: setup
run: ./bin/setup
- - name: integration
- run: ./bin/test spec/integration
- - name: unit
- run: ./bin/test spec/unit
+ - name: test
+ run: ./bin/test
+ lint:
+ runs-on: ubuntu-latest
+ name: Lint
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ lfs: true
+ submodules: recursive
+ - uses: actions/setup-ruby@v1
+ with:
+ ruby-version: 2.7
+ - name: setup
+ run: ./bin/setup
- name: lint
run: ./bin/lint
+ docker:
+ runs-on: ubuntu-latest
+ name: Docker
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ lfs: true
+ submodules: recursive
+ - name: docker
+ run: docker build .