Track remaining *.png
files with Git LFS
#286
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: build | |
# yamllint disable-line rule:truthy | |
on: | |
- pull_request | |
- push | |
- workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
submodules: recursive | |
- name: Checkout `selfdrive` | |
uses: ./.github/actions/checkout | |
- name: build selfdrive | |
run: scons --verbose |