mirror of
https://github.com/actix/actix-website
synced 2024-11-23 16:31:08 +01:00
277171c68c
Bumps [taiki-e/install-action](https://github.com/taiki-e/install-action) from 2.44.67 to 2.44.71. - [Release notes](https://github.com/taiki-e/install-action/releases) - [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/install-action/compare/v2.44.67...v2.44.71) --- updated-dependencies: - dependency-name: taiki-e/install-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
593 B
YAML
31 lines
593 B
YAML
name: Examples
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
merge_group:
|
|
types: [checks_requested]
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
check-examples:
|
|
name: Check examples
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Rust
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.10.1
|
|
|
|
- name: Install just
|
|
uses: taiki-e/install-action@v2.44.71
|
|
with:
|
|
tool: just
|
|
|
|
- name: Test examples
|
|
env:
|
|
RUSTFLAGS: -A dead-code -A unused-variables
|
|
run: just test
|