Kontinuierliche Integration eingerichtet

This commit is contained in:
Michael Lohr 2021-09-11 20:14:17 +02:00
parent 270cbfbec9
commit 4bd26c6153
No known key found for this signature in database
GPG key ID: B137D6DEABB425CF

View file

@ -8,25 +8,23 @@ on:
jobs: jobs:
ci: ci:
name: "Kontinuierliche Integration"
runs-on: ubuntu-latest
env: env:
RUST_BACKTRACE: 1 RUST_BACKTRACE: 1
runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
rust: rust:
- stable - stable
- nightly - nightly
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
profile: minimal profile: minimal
toolchain: ${{ matrix.rust }} toolchain: ${{ matrix.rust }}
override: true override: true
- name: Run examples
- name: Examples
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: run command: run