Skip to content

Commit

Permalink
Create ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-watanabe-snkeos authored Jul 2, 2024
1 parent 9eb7eb4 commit 922d20d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "CI"

on:
pull_request:
branches:
- main
- v**

push:
branches:
- test-deployment
- v**
tags:
- v*

jobs:
# General init section to setup global variables e.g., compiler version, test os
build-and-test:
# Workaround for environment variables as workflow parameters: https://github.com/orgs/community/discussions/26671
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/[email protected]

- name: Run unit tests
run: cd deployment && chmod +x ./run-unit-tests.sh && ./run-unit-tests.sh

0 comments on commit 922d20d

Please sign in to comment.