fix pipeline
This commit is contained in:
parent
474670b0af
commit
6416cd5fd9
1 changed files with 8 additions and 2 deletions
|
@ -11,8 +11,14 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Rust (if needed)
|
- name: Set up Rust
|
||||||
uses: dtolnay/rust-toolchain@stable
|
run: |
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||||
|
PATH=$HOME/.cargo/bin:$PATH
|
||||||
|
rustup toolchain install stable
|
||||||
|
rustc --version
|
||||||
|
cargo --version
|
||||||
|
|
||||||
|
|
||||||
- name: Run the program
|
- name: Run the program
|
||||||
run: cargo run --release --bin datafetcher
|
run: cargo run --release --bin datafetcher
|
||||||
|
|
Loading…
Add table
Reference in a new issue