Change ReflectionDatabase::superclasses
to use &ClassDescriptor
instead of &str
#1445
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
rust_version: [stable] | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Setup Rust toolchain | |
run: rustup default ${{ matrix.rust_version }} | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose | |
- name: Build (all features) | |
run: cargo build --all-features --verbose | |
- name: Run tests (all features) | |
run: cargo test --all-features --verbose | |
- name: Check Formatting (stable only) | |
run: cargo fmt -- --check | |
if: matrix.rust_version == 'stable' |