Compare commits

...

2 Commits

Author SHA1 Message Date
b7349f9df9
Added CI check
All checks were successful
RenovateBot / renovate (push) Successful in 32s
2024-07-19 13:08:47 +00:00
12c7f0284e
Added DevContainer 2024-07-19 13:08:46 +00:00
2 changed files with 27 additions and 0 deletions

View File

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

12
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,12 @@
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