Skip to content

Commit

Permalink
Merge pull request #272 from grycap/sqa
Browse files Browse the repository at this point in the history
Add SQA tests
  • Loading branch information
micafer authored Nov 25, 2024
2 parents f2eb277 + e161682 commit 39785dd
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/sqaaas.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: SQAaaS OSCAR

on:
push:
branches: ["sqa"]
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:

sqaaas_job:
runs-on: ubuntu-latest
steps:
- name: Add tox unit test step definition for a SQAaaS assessment
uses: eosc-synergy/sqaaas-step-action@v1
id: go_unit_test
with:
name: go_unit_test
container: "golang:1.21.4-alpine3.18"
tool: commands
commands: "go test ./... -v"

- name: SQAaaS assessment step
uses: eosc-synergy/sqaaas-assessment-action@v2
with:
qc_uni_steps: go_unit_test
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: '1.21'

Expand Down

0 comments on commit 39785dd

Please sign in to comment.