Skip to content

Commit

Permalink
Merge branch 'master' of github.com:KhronosGroup/COLLADA2GLTF into lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lasalvavida committed Jun 30, 2020
2 parents c7a6203 + ed89238 commit 78af6a4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@ name: CI
on: [push, pull_request]

jobs:
cpplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- run: pip install cpplint
- run: cpplint --recursive .

build-windows:
name: build-windows
runs-on: windows-latest
needs: cpplint

steps:
- name: Checkout
Expand Down Expand Up @@ -76,19 +85,20 @@ jobs:
build-linux:
name: build-linux
runs-on: ubuntu-latest
needs: cpplint

steps:
- uses: actions/setup-node@v1
with:
node-version: 8
- uses: actions/setup-python@v1

- name: Checkout
uses: actions/checkout@v1
with:
submodules: recursive

- name: Lint
uses: actions/setup-python@v1
run: |
pip install cpplint
cpplint --recursive .
Expand Down Expand Up @@ -160,6 +170,7 @@ jobs:
build-osx:
name: build-osx
runs-on: macos-latest
needs: cpplint

steps:
- name: Checkout
Expand Down

0 comments on commit 78af6a4

Please sign in to comment.