mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-09 17:29:50 +03:00
20 lines
272 B
YAML
20 lines
272 B
YAML
name: EMS-ESP C++ make
|
|
|
|
on:
|
|
push:
|
|
# branches: [ dev ]
|
|
pull_request:
|
|
# branches: [ dev ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: make clean
|
|
run: make clean
|
|
- name: make
|
|
run: make
|
|
|