-
-
Notifications
You must be signed in to change notification settings - Fork 23
42 lines (35 loc) · 855 Bytes
/
test-application.yml
File metadata and controls
42 lines (35 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
name: Test application
# yamllint disable-line rule:truthy
on:
push:
branches:
- dev
pull_request:
types:
- opened
- synchronize
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test application
container:
image: ghcr.io/${{ github.repository }}/ci-build-arch:latest
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Mark workspace safe for git
run: git config --global --add safe.directory .
- name: Setup Go
uses: ./.github/actions/setup-go
- name: Build web client
uses: ./.github/actions/build-client-web
- name: Run tests
run: make test
shell: bash