Skip to content

fix makefile to restart the correct container #54

fix makefile to restart the correct container

fix makefile to restart the correct container #54

Workflow file for this run

name: PR-CI
on:
pull_request:
workflow_dispatch:
permissions:
contents: read
env:
RUSTFLAGS: -Dwarnings
jobs:
test:
timeout-minutes: 30
name: ${{format('Cargo {0}', matrix.rust)}}
# if: false
runs-on: self-hosted
strategy:
fail-fast: false
matrix:
include:
# - rust: nightly
# - rust: beta
- rust: stable
# - rust: 1.74.0
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
components: clippy, rustfmt
- name: work around Cargo.lock filetime not being updated..?
run: touch Cargo.lock
- run: make ci