Unit Tests #568
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: UnitTests | |
on: | |
push: | |
# Only trigger on branches, not on tags | |
branches: | |
- 'main' | |
- 'develop' | |
paths-ignore: | |
- '.github/**' | |
- 'docs/**' | |
- 'README.md' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
cache: 'pip' # caching pip stuff | |
- name: Install Swirl | |
run: ./install.sh | |
- name: Install pytest unit tests | |
run: ./install-test.sh | |
- name: Run pytest unit tests | |
run: pytest | |
- name: Create artifacts directory | |
run: mkdir -p artifacts | |
- name: Set branch name | |
id: extract_branch | |
run: | | |
BRANCH_NAME=$(echo $GITHUB_REF | cut -d "/" -f 3) | |
echo "branch=$BRANCH_NAME" >> $GITHUB_ENV | |
- name: Write branch and run_id to file | |
run: | | |
echo "${{ env.branch }}" > ./artifacts/branch.txt | |
echo "${{ github.run_id }}" > ./artifacts/run_id.txt | |
- name: Upload branch and run_id files as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: branch-info-${{ github.run_id }} | |
path: | | |
./artifacts/branch.txt | |
./artifacts/run_id.txt | |
- name: Upload log files | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: log-files | |
path: | | |
logs/ | |
/var/log/syslog* |