Skip to content

Commit

Permalink
WIP - Add QA
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine-vinot-sonarsource committed May 13, 2024
1 parent 1988863 commit 6650101
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: QA

on: push

jobs:
run_qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- run: ./test/run-qa.sh
timeout-minutes: 5
8 changes: 8 additions & 0 deletions test/run-qa.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

# Helper functions for coloring output.
info() { echo -e "\\e[36m$*\\e[0m"; }
error() { echo -e "\\e[31m✗ $*\\e[0m"; }
success() { echo -e "\\e[32m✔ $*\\e[0m"; }

info "Work in progress..."

0 comments on commit 6650101

Please sign in to comment.