Skip to content

Added test assertion #24

Added test assertion

Added test assertion #24

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Set git config
run: |
git config --global user.email "<author@example.com>"
git config --global user.name "A U Thor"
- name: Run tests
run: cargo test --verbose