From 98ff35a9e140d2ac9884c94b97a2b65e875325cb Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 13 Mar 2020 16:45:16 +0100 Subject: [PATCH 1/2] Fix Cargo.toml file name All lowercase cargo.toml is not valid in Rust. As a result, cargo used the Cargo.toml of the parent directory, resulting in a build of the parent crate. --- testing/{cargo.toml => Cargo.toml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename testing/{cargo.toml => Cargo.toml} (100%) diff --git a/testing/cargo.toml b/testing/Cargo.toml similarity index 100% rename from testing/cargo.toml rename to testing/Cargo.toml From 879b02ec0bb493fd592971c932769489ee4594ec Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 13 Mar 2020 16:45:40 +0100 Subject: [PATCH 2/2] Revert "Disable testing for now" This reverts commit 262cacf4b2d06c9b26684fc4bb03ee7415b830f5. --- .github/workflows/rust.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 824bb60..21b62b3 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -89,6 +89,10 @@ jobs: run: cargo xbuild working-directory: 'testing' + - name: "Run Test Framework" + run: cargo xtest --verbose + working-directory: "testing" + check_formatting: name: "Check Formatting" runs-on: ubuntu-latest