Fix release builds #255
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" | |
| paths-ignore: | |
| - "**/*.md" | |
| - "LICENSE" | |
| - "assets/*.gif" | |
| pull_request: | |
| branches: | |
| - "main" | |
| paths-ignore: | |
| - "**/*.md" | |
| - "LICENSE" | |
| - "assets/*.gif" | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.ref }}" | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v5 | |
| - name: Install mold | |
| uses: rui314/setup-mold@v1 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| components: rustfmt, clippy | |
| - name: Install just | |
| uses: taiki-e/install-action@just | |
| - name: Perform CI | |
| run: just ci |