Build & Test Project Across 16+ Test Cases 🚀 #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Run Tests | |
run-name: Build & Test Project Across 16+ Test Cases 🚀 | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Build project | |
run: cargo build -r --verbose | |
- name: Run Tests | |
id: run_tests | |
run: cd tests && cargo run |