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
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Rust (if needed)
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: Set up Rust
|
||||
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
|
||||
run: cargo run --release --bin datafetcher
|
||||
|
|
Loading…
Add table
Reference in a new issue