• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1name: Tests
2
3on: [push]
4
5jobs:
6  test-latest:
7    name: Test on Latest
8    runs-on: ubuntu-latest
9
10    steps:
11      - uses: actions/checkout@v1
12      - uses: actions-rs/toolchain@v1
13        with:
14          toolchain: stable
15          profile: minimal
16          override: true
17      - name: Test
18        run: make test
19
20  test-stable:
21    name: Test on 1.42.0
22    runs-on: ubuntu-latest
23
24    steps:
25      - uses: actions/checkout@v1
26      - uses: actions-rs/toolchain@v1
27        with:
28          toolchain: 1.42.0
29          profile: minimal
30          override: true
31      - name: Test
32        run: make test
33