• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1name: master
2on:
3  push:
4    branches:
5      - master
6  schedule:
7    - cron: '0 0 * * 0' # 00:00 Sunday
8
9jobs:
10
11  test:
12    name: Test
13    runs-on: ubuntu-latest
14    strategy:
15      matrix:
16        rust: [1.8.0, stable]
17    steps:
18      - name: Rust install
19        uses: actions-rs/toolchain@v1
20        with:
21          toolchain: ${{ matrix.rust }}
22          profile: minimal
23          override: true
24      - name: Checkout
25        uses: actions/checkout@v2
26      - name: Build
27        uses: actions-rs/cargo@v1
28        with:
29          command: build
30      - name: Test
31        run: ./ci/test_full.sh
32