Skip to content

Merge pull request #23 from stephengtuggy/dependabot/github_actions/a… #26

Merge pull request #23 from stephengtuggy/dependabot/github_actions/a…

Merge pull request #23 from stephengtuggy/dependabot/github_actions/a… #26

Workflow file for this run

name: Rust
on:
push:
branches: [ main, master, develop ]
pull_request:
branches: [ main, master, develop ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
- name: Build
run: cargo build --verbose
working-directory: ./hippocratic_demographics
- name: Run tests
run: cargo test --verbose
working-directory: ./hippocratic_demographics