Update all dependencies #407
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: Run unit tests | |
on: {"pull_request"} | |
env: {"DEBIAN_FRONTEND": "noninteractive"} | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install CI prerequisites | |
run: sudo -E apt-get install git -y | |
- name: Checkout Git repository | |
uses: actions/checkout@v3 | |
- name: Run unit tests | |
uses: stepchowfun/toast/.github/actions/toast@main | |
# vim: expandtab ts=2 sw=2 |