tinyusb/.github/workflows/pre-commit.yml

49 lines
984 B
YAML
Raw Normal View History

2022-12-04 20:29:24 +07:00
name: pre-commit
on:
push:
2022-12-08 10:00:25 +07:00
pull_request:
branches: [ master ]
2022-12-04 20:29:24 +07:00
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
2022-12-08 09:44:26 +07:00
ruby-version: '3.0'
2022-12-04 20:29:24 +07:00
- name: Checkout TinyUSB
uses: actions/checkout@v3
- name: Run codespell
uses: codespell-project/actions-codespell@master
- name: Run Unit Tests
run: |
# Install Ceedling
gem install ceedling
2022-12-08 10:00:25 +07:00
cd test/unit-test
2022-12-08 11:31:39 +07:00
ceedling test:all
- name: Build Fuzzer
run: |
export CC=clang
export CXX=clang++
2022-12-08 11:36:19 +07:00
fuzz_harness=$(ls -d test/fuzz/device/*/)
2022-12-08 11:31:39 +07:00
for h in $fuzz_harness
do
2022-12-08 11:40:43 +07:00
make -C $h get-deps
make -C $h all
2022-12-08 11:31:39 +07:00
done