From 6199dbeccf4c8aff4175ba41d14c407469832345 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Wed, 27 Sep 2023 10:58:03 +0200 Subject: [PATCH] Convert all tests to run tests --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dc616b0..937a441 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: test-latest-linux: - name: Test on Linux + name: Test on Latest Linux runs-on: ubuntu-latest steps: @@ -12,13 +12,13 @@ jobs: - uses: dtolnay/rust-toolchain@master with: toolchain: stable - - name: Check - run: make check + - name: Test + run: make test - name: Demo run: ./demo.sh test-latest-windows: - name: Build on Windows + name: Test on Latest Windows runs-on: windows-latest steps: @@ -26,8 +26,8 @@ jobs: - uses: dtolnay/rust-toolchain@master with: toolchain: stable - - name: Check - run: make check + - name: Test + run: make test - name: Demo run: ./demo.bat