Skip to content

fix(deps): update module github.com/swaggest/jsonschema-go to v0.3.72 #1378

fix(deps): update module github.com/swaggest/jsonschema-go to v0.3.72

fix(deps): update module github.com/swaggest/jsonschema-go to v0.3.72 #1378

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
pull_request:
concurrency:
group: ci-unit-test-${{ github.head_ref || github.ref }}-${{ github.repository }}
cancel-in-progress: true
env:
FORCE_COLOR: 1
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install earthly
uses: Luet-lab/luet-install-action@v1
with:
repository: quay.io/kairos/packages
packages: utils/earthly
- name: Run lint
run: |
earthly +lint
unit-tests:
strategy:
matrix:
go-version: [ "1.23" ]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install earthly
uses: Luet-lab/luet-install-action@v1
with:
repository: quay.io/kairos/packages
packages: utils/earthly
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
- name: Run tests
run: |
earthly -P +test --GO_VERSION=${{ matrix.go-version }}
- name: Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./coverage.out