mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2025-06-07 11:16:37 +00:00
Reproduce issue 153
This commit is contained in:
parent
b3b07ba8b4
commit
9205c9b79d
4 changed files with 26 additions and 0 deletions
18
.github/workflows/repro.yml
vendored
Normal file
18
.github/workflows/repro.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: Repro
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [repro]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
repro:
|
||||||
|
name: Repro
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 45
|
||||||
|
steps:
|
||||||
|
- run: echo 1.85.0 > rust-toolchain
|
||||||
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
|
- run: cargo fmt --check
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
/target/
|
||||||
|
/Cargo.lock
|
5
Cargo.toml
Normal file
5
Cargo.toml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[package]
|
||||||
|
name = "repro"
|
||||||
|
version = "0.0.0"
|
||||||
|
edition = "2024"
|
||||||
|
publish = false
|
1
src/main.rs
Normal file
1
src/main.rs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
fn main() {}
|
Loading…
Add table
Add a link
Reference in a new issue