build(deps): bump the production-dependencies group with 4 updates #55
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cargo - Examples | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
workflow_dispatch: | ||
permissions: | ||
contents: read | ||
jobs: | ||
examples: | ||
name: Examples | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
example: [ "basic", "advanced", "entrypoint" ] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run Example - ${{ matrix.example }} | ||
uses: ./examples/${{ matrix.example }}/ | ||
Check failure on line 28 in .github/workflows/examples.yml GitHub Actions / Cargo - ExamplesInvalid workflow file
|
||