fix(raiko): add build flags to docker image build script #886
Workflow file for this run
This file contains 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 - Lint | |
on: | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
merge_group: | |
env: | |
CARGO_TERM_COLOR: always | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
clippy: | |
name: clippy | |
runs-on: [taiko-runner] | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run install script for all targets | |
run: make install | |
- name: Run clippy check for all targets | |
run: make clippy | |
fmt: | |
name: fmt | |
runs-on: [taiko-runner] | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run format script for all targets | |
run: make fmt |