Build & Test Project Across 10+ Test Cases 🚀 #9
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 10+ 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: Install Test Runner | |
run: cargo install qbtt | |
- name: Run Tests | |
id: run_tests | |
run: cd tests && qbtt test_cases.toml |