Renamed workflow file and edited README

This commit is contained in:
CosminPerRam 2022-11-25 19:37:12 +02:00
parent 4c7cecb5c3
commit 462014c8ac
2 changed files with 4 additions and 1 deletions

21
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose