Skip to content

Commit 39785dd

Browse files
authored
Merge pull request #272 from grycap/sqa
Add SQA tests
2 parents f2eb277 + e161682 commit 39785dd

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

.github/workflows/sqaaas.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: SQAaaS OSCAR
2+
3+
on:
4+
push:
5+
branches: ["sqa"]
6+
tags:
7+
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
8+
jobs:
9+
10+
sqaaas_job:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Add tox unit test step definition for a SQAaaS assessment
14+
uses: eosc-synergy/sqaaas-step-action@v1
15+
id: go_unit_test
16+
with:
17+
name: go_unit_test
18+
container: "golang:1.21.4-alpine3.18"
19+
tool: commands
20+
commands: "go test ./... -v"
21+
22+
- name: SQAaaS assessment step
23+
uses: eosc-synergy/sqaaas-assessment-action@v2
24+
with:
25+
qc_uni_steps: go_unit_test

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-20.04
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212

1313
- name: Setup Go
14-
uses: actions/setup-go@v3
14+
uses: actions/setup-go@v5
1515
with:
1616
go-version: '1.21'
1717

0 commit comments

Comments
 (0)