Add support for yaml extensions #8
This file contains hidden or 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: check | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ "develop" ] | |
| env: | |
| RUSTDOCFLAGS: "-D warnings" | |
| RUSTFLAGS: "-D warnings" | |
| jobs: | |
| ubuntu: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v4 | |
| - name: setup rust cache | |
| uses: Swatinem/rust-cache@v2 | |
| - name: install tools | |
| run: | | |
| sudo apt-get install musl-tools -y | |
| cargo install --debug cargo-make | |
| rustup target add x86_64-unknown-linux-musl | |
| - name: check | |
| run: cargo make --no-workspace ci-check |