From cfd189a300ef3779ca8554f8797c9b445d251888 Mon Sep 17 00:00:00 2001 From: "NGnius (Graham)" Date: Thu, 4 Aug 2022 00:29:57 +0000 Subject: [PATCH 1/2] Create rust.yml --- .github/workflows/rust.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..69f5ac4 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: cd interpreter && cargo build --verbose; cd .. + - name: Run tests + run: cd interpreter && cargo test --verbose; cd .. From 382fc0c4a049b3d790b0d32c1b884cbbcb8fcfd4 Mon Sep 17 00:00:00 2001 From: "NGnius (Graham)" Date: Thu, 4 Aug 2022 00:32:46 +0000 Subject: [PATCH 2/2] Update rust.yml --- .github/workflows/rust.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 69f5ac4..7eeb6ae 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,7 +16,9 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Build + - name: Init submodules + run: git submodule update --init + - name: Build interpreter run: cd interpreter && cargo build --verbose; cd .. - - name: Run tests + - name: Run interpreter tests run: cd interpreter && cargo test --verbose; cd ..