Skip to content

Merge pull request #5089 from M4rtinK/master-f39_fix_docs #1281

Merge pull request #5089 from M4rtinK/master-f39_fix_docs

Merge pull request #5089 from M4rtinK/master-f39_fix_docs #1281

Workflow file for this run

# ======================================
# WARNING!
# THIS FILE IS GENERATED FROM A TEMPLATE
# DO NOT EDIT THIS FILE MANUALLY!
# ======================================
# The template is located in: push-tests.yml.j2
name: Run tests on push
on:
push:
branches:
- master
- fedora-[0-9]+
permissions:
contents: read
jobs:
unit-tests:
runs-on: ubuntu-20.04
timeout-minutes: 30
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Build anaconda-ci container
run: make -f Makefile.am anaconda-ci-build
- name: Run tests in anaconda-ci container
run: |
# put the log in the output, where it's easy to read and link to
make -f Makefile.am container-ci || { cat test-logs/test-suite.log; exit 1; }
- name: Upload test and coverage logs
if: always()
uses: actions/upload-artifact@v3
with:
name: 'logs'
path: test-logs/*
- name: Upload coverage to Codecov
if: always()
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}