Skip to content

feat(R pkg): added validation for configuration values (#37) #146

feat(R pkg): added validation for configuration values (#37)

feat(R pkg): added validation for configuration values (#37) #146

Workflow file for this run

name: Rust build and tests
on:
push:
branches: ["main"]
paths-ignore:
- "antidotum"
pull_request:
branches: ["main"]
paths-ignore:
- "antidotum"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Rust build tools
run: |
rustup update
- name: Build
run: cargo build --verbose --release
- name: Run tests
run: cargo test --verbose --release