microscope: fix simulated mode in microscope #12
Workflow file for this run
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: Install Environment and Run Tests | |
on: | |
push: | |
branches: master | |
pull_request: | |
jobs: | |
install-and-test: | |
permissions: | |
contents: read | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: ./software | |
steps: | |
- name: Checkout the Squid repo | |
uses: actions/checkout@v4 | |
- name: Run the setup script for Ubuntu 22.04 | |
run: ./setup_22.04.sh | |
env: | |
SRC_ROOT: '.' | |
- name: Run the cuda setup script | |
run: ./setup_cuda_22.04.sh | |
- name: "TEMPORARY: copy a valid config into the repo software root" | |
run: cp configurations/configuration_Squid+.ini . | |
- name: Run the tests | |
run: python3 -m pytest |