Switch ghcr repo to openchami #8
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 CT Tests | |
on: | |
- push | |
- pull_request | |
- workflow_dispatch | |
jobs: | |
run_ct_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Install docker compose | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y docker-compose make | |
- name: Run ct tests | |
run: make ct |