mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
26 lines
508 B
YAML
26 lines
508 B
YAML
name: 'CI'
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build docker image
|
|
uses: ./.github/actions/docker
|
|
|
|
- name: Build target_lo in docker
|
|
uses: ./.github/actions/docker
|
|
with:
|
|
run: make -C target_lo
|
|
|
|
- name: Build target_f1 in docker
|
|
uses: ./.github/actions/docker
|
|
with:
|
|
run: make -C target_f1
|