Skip to content

Using github actions to rewrite: LinuxCI #9

Using github actions to rewrite: LinuxCI

Using github actions to rewrite: LinuxCI #9

Workflow file for this run

name: develop
on:
pull_request:
push:
jobs:
linux-x86:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Dep
run: rustup component add rustfmt
# https://github.com/EmbarkStudios/cargo-deny-action
- uses: EmbarkStudios/cargo-deny-action@v1
with:
arguments: --all-features
command: check advisories licenses sources bans
- name: Run ci-generated
run: make ci-generated
- name: Run ci
run: make ci
- name: Run ci-asm
run: make ci-asm
- name: Run spawn tests in release
run: cargo test test_spawn --release --features=asm -- --nocapture