From 4bd26c61530f67425033b2b8ba8074dd85d58fe0 Mon Sep 17 00:00:00 2001 From: Michael Lohr Date: Sat, 11 Sep 2021 20:14:17 +0200 Subject: [PATCH] Kontinuierliche Integration eingerichtet --- .github/workflows/main.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 461e66e..a4e0b19 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,25 +8,23 @@ on: jobs: ci: + name: "Kontinuierliche Integration" + runs-on: ubuntu-latest env: RUST_BACKTRACE: 1 - runs-on: ubuntu-latest strategy: matrix: rust: - stable - nightly - steps: - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: ${{ matrix.rust }} override: true - - - name: Examples + - name: Run examples uses: actions-rs/cargo@v1 with: command: run