view .github/workflows/test.yml @ 72:08db02ef7028

github actions: fix previous commit
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 02 Apr 2022 13:46:13 -0700
parents 1f11a9e15a6d
children
line wrap: on
line source

on: [push, pull_request]

name: CI

jobs:
  build_and_test:
    name: Rust project
    runs-on: ubuntu-latest
    strategy:
      matrix:
        features: ["--features=full", "--no-default-features"]
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - uses: actions-rs/cargo@v1
        with:
          command: test
          args: ${{ matrix.features }}