diff options
| author | Andreas Grois <soulsource@users.noreply.github.com> | 2023-04-03 18:53:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-03 18:53:34 +0200 |
| commit | e91614f6915252351cc666371e16964d290566d2 (patch) | |
| tree | 0ab846514374d1e0fc6ae4307ea593a8933a3701 /.github | |
| parent | d6136ca09351c4801e48cd7e0751e6a78b50a3a7 (diff) | |
Add build step for examples.
I completely forgot to add this step to the build process.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/rust.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 57c5d46..fd3e4dc 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,6 +18,8 @@ jobs: - uses: actions/checkout@v3 - name: Build run: cargo build --verbose + - name: Build Examples + run: cargo build --verbose --examples test: runs-on: ubuntu-latest steps: |
