view .github/workflows/test.yml @ 39:390b3b7095cc

Set up GH actions
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 10 Dec 2020 19:20:26 +0100
parents
children 530ed8152c95
line wrap: on
line source

on: [push]

name: CI

jobs:
  build_and_test:
    name: Rust project
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - uses: actions-rs/cargo@v1
        with:
          command: test
          args: --features full
      - uses: actions-rs/cargo@v1
        with:
          command: test