Compare commits

..

No commits in common. "b7349f9df91c3932f3b7c4e51b808fc622b4c835" and "5c9a691495750ae5866903f088a95909df607c08" have entirely different histories.

2 changed files with 0 additions and 27 deletions

View File

@ -1,15 +0,0 @@
{
"image": "mcr.microsoft.com/devcontainers/rust:latest",
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer"
]
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
]
}

View File

@ -1,12 +0,0 @@
name: test suite
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --all
- run: cargo test --all-features