Skip to content

Commit

Permalink
Test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jklmnn committed Nov 27, 2023
1 parent e379bb8 commit cab5b4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
alr -q printenv --unix
eval $(alr -q printenv --unix)
cargo build -vv
cargo fmt -- --check
cargo clippy -- -Dwarnings
cargo test
Expand All @@ -43,15 +44,14 @@ jobs:
toolchain: nightly
- name: Install Ada toolchain
uses: alire-project/setup-alire@v2
with:
version: nightly
- name: Install python dependencies
run: |
python -m pip install --upgrade pip wheel virtualenv
- name: Tests
run: |
alr -q printenv --unix
eval $(alr -q printenv --unix)
cargo build -vv
cargo fmt -- --check
cargo clippy -- -Dwarnings
cargo test
Expand Down
2 changes: 2 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ where
String::from_utf8(output.stderr).unwrap()
);
}
println!("{}", String::from_utf8(output.stdout.clone()).unwrap());
println!("{}", String::from_utf8(output.stderr.clone()).unwrap());
String::from_utf8(output.stdout).unwrap()
}

Expand Down

0 comments on commit cab5b4f

Please sign in to comment.