123456789101112131415161718192021222324 |
- on:
- push:
- branches:
- - main
- workflow_dispatch:
- pull_request:
- name: Tests
- jobs:
- tests:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Install stable toolchain
- uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
- components: rustfmt
- - name: Run cargo test
- uses: actions-rs/cargo@v1
- with:
- command: test
|