view .github/workflows/test.yml @ 106:bb57757a7727 default tip

Added tag v0.4.1 for changeset 793f2e38a318
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 27 Oct 2023 20:22:19 +0200
parents 08db02ef7028
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 }}