Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multi-process proof-of-concept, fix #68 (WIP) #70

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/blondie.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ jobs:
- name: Build
run: cargo build --release --all-features --verbose

- name: Run tests
run: cargo test --release --all-features --verbose -- --nocapture
# TODO: Doesn't record any tracing events on github-actions
# - name: Run tests
# run: cargo test --release --all-features --verbose -- --nocapture

docs:
runs-on: windows-latest
Expand Down
19 changes: 1 addition & 18 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,6 @@ jobs:
- uses: actions/checkout@v2

- run: rustup component add clippy

# Workaround from https://github.com/actions-rs/clippy-check/issues/2#issuecomment-807878478
# - name: Check workflow permissions
# id: check_permissions
# uses: scherermichael-oss/action-has-permission@1.0.6
# with:
# required-permission: write
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Run clippy action to produce annotations
# uses: actions-rs/clippy-check@v1
# if: steps.check_permissions.outputs.has-permission
# with:
# args: --all-targets -- -D warnings
# token: ${{ secrets.GITHUB_TOKEN }}
# - name: Run clippy manually without annotations
# if: ${{ !steps.check_permissions.outputs.has-permission }}
# run: cargo clippy --all-targets -- -D warnings

- name: Run clippy manually without annotations
run: cargo clippy --all-targets -- -D warnings
Loading