mirror of
https://github.com/firewalkwithm3/Sensor-Watch.git
synced 2024-11-22 19:20:30 +08:00
17 lines
320 B
YAML
17 lines
320 B
YAML
|
name: Build
|
||
|
|
||
|
on: [pull_request, push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
container:
|
||
|
image: ghcr.io/armmbed/mbed-os-env:latest
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Compile Starter Project
|
||
|
run: make
|
||
|
working-directory: 'apps/beats-time/make'
|
||
|
|