This repository was archived by the owner on Jun 9, 2025. It is now read-only.
Run tests #1
Workflow file for this run
This file contains hidden or 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
#Run linters and auto bump the version file based on PR body > PR title > `patch` default. | |
name: Apply SW4HW Standards | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened, synchronize, edited] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
standardize: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: install socat | |
run: | | |
sudo apt install -y socat | |
- name: Configure git with qubot | |
run: | | |
git config --global user.name 'The OG Bot Betty McBottington' | |
git config --global user.email '[email protected]' | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Cloud-action test | |
uses: xanaduAI/cloud-actions/og/unit@main | |
with: | |
key: ${{ secrets.XANADU_OG_QUBOT }} | |
path: tests | |
- name: Upload test artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unit-test-artifacts-${{ github.head_ref }} | |
path: ./**/*.xml |