Skip to content

Commit

Permalink
Rebase work on rust-toolchain.toml and GitHub actions workflow
Browse files Browse the repository at this point in the history
create rust-toolchain.toml

fixed format of rust-toolchain.toml

getting to work with github actions

Update rust.yml

Update rust.yml
  • Loading branch information
shulltronics committed Mar 6, 2024
1 parent 61241f0 commit cac8d79
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
run: sudo apt-get update; sudo apt-get upgrade;
sudo apt-get install libglib2.0-dev libssl-dev libatk1.0-dev libgtk-3-dev;
cargo build --verbose
- name: Run tests
run: cargo test --verbose
3 changes: 3 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[toolchain]
channel = "nightly-2023-10-02"
# targets = ["x86_64-pc-windows-msvc"]

0 comments on commit cac8d79

Please sign in to comment.