sensor-watch/.github/workflows/main.yml

21 lines
477 B
YAML
Raw Normal View History

2021-12-05 20:58:44 +08:00
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
2021-12-06 01:37:44 +08:00
- name: Compile beats-time app
2021-12-05 20:58:44 +08:00
run: make
working-directory: 'apps/beats-time/make'
2021-12-06 01:37:44 +08:00
- name: Upload UF2
uses: actions/upload-artifact@v2
with:
name: watch.uf2
path: apps/beats-time/make/build/watch.uf2