summaryrefslogtreecommitdiffstats
path: root/.github/workflows/rust.yml
blob: a070b018387c144f2e1e514de417b02fee6dc6e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Rust

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build-and-test:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Run tests
      run: make unit-tests