build(deps): bump langston-barrett/gha/.github/workflows/merge-dependabot-prs.yml from 9c2fa6aecfca059cb23255f6e4f84f8227801812 to e48498bb55f3024a52a7686f698b2360c5c75e59 #636
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| env: | |
| # The NAME makes it easier to copy/paste snippets from other CI configs | |
| NAME: treeedb | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.3 | |
| - name: Format | |
| run: cargo fmt && git diff --exit-code | |
| - name: Deps | |
| run: | | |
| rustup update | |
| rustup component add clippy | |
| - uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 | |
| - name: Lint | |
| run: make lint | |
| static: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.3 | |
| - name: Deps | |
| run: | | |
| sudo apt-get install -y musl-tools | |
| rustup target add x86_64-unknown-linux-musl | |
| - uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 | |
| - run: make static | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.3 | |
| - uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 | |
| - name: Deps | |
| env: | |
| DEBIAN_FRONTEND: noninteractive | |
| SOUFFLE_VERSION: 2.5 | |
| run: | | |
| wget -q -O souffle.deb https://github.com/souffle-lang/souffle/releases/download/${SOUFFLE_VERSION}/x86_64-ubuntu-2204-souffle-${SOUFFLE_VERSION}-Linux.deb | |
| sudo apt-get install -y --no-install-recommends ./souffle.deb | |
| rm souffle.deb | |
| - run: make test |