Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/run-via-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: (Work In Progress) Run VIA tests (GitHub Hosted)

on:
# TODO: Uncomment the original triggers below when ready for full deployment
pull_request:
branches:
- feature/github-actions-cicd # Temporary: only run on this branch
# - main
# - develop
# - release/*
# - feature/*
# - hotfix/*
# types:
# - opened
# - synchronize
# - reopened
# - ready_for_review

push:
branches:
- feature/github-actions-cicd # Temporary: only run on this branch
# - main
# - develop
# - release/*
# - hotfix/*
# - feature/*

workflow_dispatch:

jobs:
run-via-tests:
name: Run VI Analyzer tests
runs-on: ubuntu-latest
container:
image: nationalinstruments/labview:2025q3patch1-linux

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run VI Analyzer tests
shell: bash
working-directory: ${{ github.workspace }}
run: |
# TODO: Add commands to run VI Analyzer tests on files in this repo
echo "Work In progress: VI Analyzer tests to be implemented."
Loading