Marking that the converter function in the derived actor is cross-thread safe since it's just an Into() call. #682
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: | |
- main | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
test: | |
name: ${{matrix.name}} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Run the default tests | |
package: ractor | |
# flags: | |
- name: Test ractor without async-trait | |
package: ractor | |
flags: --no-default-features -F tokio_runtime,message_span_propogation | |
- name: Test ractor without span propogation | |
package: ractor | |
flags: --no-default-features -F tokio_runtime,async-trait | |
- name: Test ractor with the `cluster` feature | |
package: ractor | |
flags: -F cluster | |
- name: Test ractor with the `blanket_serde` feature | |
package: ractor | |
flags: -F blanket_serde | |
- name: Test ractor_cluster with native async traits | |
package: ractor_cluster | |
# flags: | |
- name: Test ractor_cluster with async_trait | |
package: ractor_cluster | |
flags: -F async-trait | |
- name: Test ractor with the monitor API | |
package: ractor | |
flags: -F monitors | |
steps: | |
- uses: actions/checkout@main | |
- name: Install rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: ${{matrix.name}} | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --package ${{matrix.package}} ${{matrix.flags}} | |
- name: Test everything | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Install minimal stable with clippy | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
components: clippy | |
override: true | |
- name: Run Clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --all -- -D clippy::all -D warnings | |
rustfmt: | |
name: rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Install minimal stable with rustfmt | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
components: rustfmt | |
override: true | |
- name: Run rustfmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
docs: | |
name: docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Install minimal stable with rustfmt | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
components: rustfmt | |
override: true | |
- name: Run cargo doc on release profile | |
uses: actions-rs/cargo@v1 | |
with: | |
command: doc | |
args: --lib -r | |
benches: | |
name: benches | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Install rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Compile benchmarks | |
uses: actions-rs/cargo@v1 | |
with: | |
command: bench | |
args: --no-run | |