Skip to content

Merge branch 'master' into all-contributors/add-aryanas159 #116

Merge branch 'master' into all-contributors/add-aryanas159

Merge branch 'master' into all-contributors/add-aryanas159 #116

name: Runtime Testing Rust Models
on:
push:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- 'src/generators/rust/**'
- 'test/runtime/runtime-rust/**'
- 'test/runtime/**rust**'
jobs:
test:
name: Runtime Testing Rust Models
if: "github.event.pull_request.draft == false &&!((github.actor == 'asyncapi-bot' && startsWith(github.event.pull_request.title, 'ci: update global workflows')) || (github.actor == 'asyncapi-bot' && startsWith(github.event.pull_request.title, 'chore(release):')) || (github.actor == 'allcontributors' && startsWith(github.event.pull_request.title, 'docs: add')))"
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 14
- name: Build library
run: npm install && npm run build:prod
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy, rust-src
- name: Generate Rust models
run: npm run generate:runtime:rust
- name: Run runtime tests
run: npm run test:runtime:rust