Switch CI to tytanic #21
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Probe runner package cache | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: cargo | |
version: 1.0 | |
- name: Install tytanic from crates.io | |
uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: tytanic | |
version: 0.1 | |
- name: Run test suite | |
run: tt run |