Skip to content

Merge pull request #5 from NelsonAPenn/feature/abort-on-empty-index #7

Merge pull request #5 from NelsonAPenn/feature/abort-on-empty-index

Merge pull request #5 from NelsonAPenn/feature/abort-on-empty-index #7

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure git
run: git config --global user.name "Test User" && git config --global user.email "test.user@github.com"
- name: Build
run: cargo build --verbose
- name: Lint
run: cargo fmt --check
- name: Run tests
run: cargo test --verbose