Skip to content

chore(docker): Use COPY --link for improved file copying efficiency (resolves #1408). #547

chore(docker): Use COPY --link for improved file copying efficiency (resolves #1408).

chore(docker): Use COPY --link for improved file copying efficiency (resolves #1408). #547

name: "clp-rust-checks"
on:
pull_request:
push:
schedule:
# Run daily at 00:15 UTC (the 15 is to avoid periods of high load)
- cron: "15 0 * * *"
workflow_dispatch:
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
# Cancel in-progress jobs for efficiency
cancel-in-progress: true
jobs:
rust-checks:
strategy:
matrix:
os:
- "macos-15"
- "ubuntu-22.04"
- "ubuntu-24.04"
runs-on: "${{matrix.os}}"
steps:
- uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683"
with:
submodules: "recursive"
- name: "Install task"
shell: "bash"
run: "npm install -g @go-task/cli@3.44.0"
- name: "Lint"
shell: "bash"
run: "task lint:check-rust"
- name: "Test"
shell: "bash"
run: "task tests:rust-all"