Skip to content

Commit

Permalink
bitcraze#461: Run CI checks in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ataffanel authored Dec 21, 2020
1 parent 0a9e5d9 commit 1978f21
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- run: docker pull bitcraze/builder

- name: CI checks
run: docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build

0 comments on commit 1978f21

Please sign in to comment.