The privdocker action got update to node 16, since node 12 is deprecated and support for it will be remove by summer 2023[1]. [1] https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
37 lines
1 KiB
YAML
37 lines
1 KiB
YAML
name: Tests
|
|
|
|
on: [pull_request, push]
|
|
|
|
jobs:
|
|
test_suite:
|
|
name: "Test Suite"
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
test:
|
|
- "test.mod"
|
|
- "test.run.test_assemblers"
|
|
- "test.run.test_boot"
|
|
- "test.run.test_executable"
|
|
- "test.run.test_noop"
|
|
- "test.run.test_sources"
|
|
- "test.run.test_stages"
|
|
- "test.src"
|
|
steps:
|
|
- name: "Clone Repository"
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2 # codecov requires this (https://github.com/codecov/codecov-action/issues/190)
|
|
- name: "Run Tests"
|
|
uses: osbuild/containers/src/actions/privdocker@552e30cf1b4ed19c6ddaa57f96c342b3dff4227b
|
|
with:
|
|
image: ghcr.io/osbuild/osbuild-ci:latest-202209070757
|
|
run: |
|
|
python3 -m pytest \
|
|
--pyargs "${{ matrix.test }}" \
|
|
--rootdir=. \
|
|
--cov-report=xml --cov=osbuild \
|
|
-v
|
|
- name: Send coverage to codecov.io
|
|
run: bash <(curl -s https://codecov.io/bash)
|