From 57ebb10331e5384bb5294ebbe5059d3fa43886bd Mon Sep 17 00:00:00 2001 From: graelo Date: Tue, 2 Jun 2020 23:05:35 +0200 Subject: [PATCH] chore(ci): update workflow --- .github/workflows/{rust.yml => rust-ci.yml} | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) rename .github/workflows/{rust.yml => rust-ci.yml} (87%) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust-ci.yml similarity index 87% rename from .github/workflows/rust.yml rename to .github/workflows/rust-ci.yml index 4032416..4169ec6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust-ci.yml @@ -1,4 +1,4 @@ -name: Rust +name: Rust CI on: push: @@ -20,6 +20,9 @@ jobs: - name: Build run: cargo build --release + - name: Run tests + run: cargo test --verbose + - uses: actions/upload-artifact@v2 with: name: copyrat-macos.zip @@ -39,6 +42,9 @@ jobs: - name: Build run: cargo build --release + - name: Run tests + run: cargo test --verbose + - uses: actions/upload-artifact@v2 with: name: copyrat-linux.zip