Skip to content

A few more README tweaks #14

A few more README tweaks

A few more README tweaks #14

Workflow file for this run

name: Build and test
on:
push:
branches: [ "master" ]
paths:
- 'src/**'
- 'tests/**'
- 'Cargo.*'
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Install Emacs
run: sudo apt-get install -y emacs
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose -- --nocapture