Add Taplo check to CI (#2451)

* Add Taplo check to CI

* more taplo

* Try to make this easier
This commit is contained in:
Dominik Maier 2024-07-26 18:38:50 +02:00 committed by GitHub
parent 09a8b1dd80
commit 6df1b34375
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 2 deletions

View File

@ -389,6 +389,15 @@ jobs:
- name: Build no_std no_alloc bolts - name: Build no_std no_alloc bolts
run: cd ./libafl_bolts && cargo +nightly build -Zbuild-std=core --target aarch64-unknown-none --no-default-features -v --release && cd ../ run: cd ./libafl_bolts && cargo +nightly build -Zbuild-std=core --target aarch64-unknown-none --no-default-features -v --release && cd ../
format-toml:
runs-on: ubuntu-24.04
steps:
- name: Install taplo
run: curl -fsSL https://github.com/tamasfe/taplo/releases/latest/download/taplo-full-linux-x86_64.gz | gzip -d - | install -m 755 /dev/stdin /usr/local/bin/taplo
- uses: actions/checkout@v4
- name: Run taplo
run: taplo format --check
build-docker: build-docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: