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