Skip to content

benchmark: use a sqlite database version of the dataset (#24) #28

benchmark: use a sqlite database version of the dataset (#24)

benchmark: use a sqlite database version of the dataset (#24) #28

Workflow file for this run

name: CI Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Upload dapper binary
uses: actions/upload-artifact@v4
with:
name: dapper-binary-${{ runner.os }}
path: |
target/debug/dapper${{ matrix.os == 'windows-latest' && '.exe' || '' }}
- name: Run tests
run: cargo test --verbose
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy -- -D warnings
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt -- --check