Skip to content

Commit

Permalink
Convert all tests to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Sep 27, 2023
1 parent 3794841 commit 6199dbe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,30 @@ on: [push, pull_request]

jobs:
test-latest-linux:
name: Test on Linux
name: Test on Latest Linux
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- 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:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Check
run: make check
- name: Test
run: make test
- name: Demo
run: ./demo.bat

Expand Down

0 comments on commit 6199dbe

Please sign in to comment.