1234567891011121314151617181920212223242526272829303132 |
- name: master
- on:
- push:
- branches:
- - master
- schedule:
- - cron: '0 0 * * 0' # 00:00 Sunday
- jobs:
- test:
- name: Test
- runs-on: ubuntu-latest
- strategy:
- matrix:
- rust: [1.8.0, stable]
- steps:
- - name: Rust install
- uses: actions-rs/toolchain@v1
- with:
- toolchain: ${{ matrix.rust }}
- profile: minimal
- override: true
- - name: Checkout
- uses: actions/checkout@v2
- - name: Build
- uses: actions-rs/cargo@v1
- with:
- command: build
- args: --verbose
- - name: Test
- run: ./ci/test_full.sh
|