Try to install opp_env, and show test output #2
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: Run smoke tests | |
on: | |
push: | |
branches: | |
- topic/smoketest | |
jobs: | |
test: | |
name: Smoke tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install locally | |
run: python3 -m pip install -e . | |
- name: Run smoke tests | |
working-directory: tests | |
run: ./smoketest_nixless | |
- name: Show output | |
run: | | |
echo "::group::Output" | |
cat tests/out.txt | |
echo "::endgroup::" | |
echo "::group::Cumulative output" | |
cat tests/cumulative_out.txt | |
echo "::endgroup::" |