Skip to content

fixes related to scanning of mounted file systems #312

fixes related to scanning of mounted file systems

fixes related to scanning of mounted file systems #312

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-ci-${{ github.event.number || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- 'stable'
- 'oldstable'
container: quay.io/projectquay/golang:1.23
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test ./...
e2e:
name: End-to-End test (UBI 10)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- 'stable'
- 'oldstable'
container: registry.access.redhat.com/ubi10:latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: ${{ matrix.go }}
- name: Install Dependencies
run: dnf install -y make jq util-linux
- name: E2E Tests
run: make e2e