mirror of
https://github.com/actix/actix-website
synced 2024-11-27 18:12:57 +01:00
Check examples on GHA
This commit is contained in:
parent
28afff239f
commit
8edee01ac4
33
.github/workflows/rust.yml
vendored
Normal file
33
.github/workflows/rust.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
name: Check examples
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, synchronize, reopened]
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
env:
|
||||
RUSTFLAGS: -A dead-code -A unused-variables
|
||||
|
||||
jobs:
|
||||
check-examples:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
||||
name: Check examples
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: Use stable
|
||||
run: |
|
||||
rustup override set stable
|
||||
rustup update stable
|
||||
|
||||
- name: cargo check and cargo test
|
||||
run: |
|
||||
cd examples
|
||||
cargo check
|
||||
cargo test
|
Loading…
Reference in New Issue
Block a user