mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-04-27 11:21:44 +00:00
25 lines
582 B
YAML
25 lines
582 B
YAML
name: WebUI tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
concurrency:
|
|
group: ci-webui-${{ github.head_ref || github.ref }}-${{ github.repository }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
webui:
|
|
strategy:
|
|
matrix:
|
|
go-version: [ "1.24-bookworm" ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install earthly
|
|
uses: earthly/actions-setup@v1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: WebUI tests
|
|
run: earthly +webui-tests --GO_VERSION=${{ matrix.go-version }}
|