Skip to content

Update CHANGES.md

Update CHANGES.md #187

Workflow file for this run

name: CI
on:
- push
- pull_request
- workflow_dispatch
jobs:
test:
name: "Test on GAP-${{ matrix.gap-version }}"
runs-on: ubuntu-latest
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
strategy:
fail-fast: false
matrix:
include:
- gap-version: "master"
coverage: true
- gap-version: "4.14.0-beta1"
- gap-version: "4.13.1"
- gap-version: "4.13.0"
- gap-version: "4.12.2"
- gap-version: "4.12.1"
- gap-version: "4.12.0"
- gap-version: "4.11.1"
- gap-version: "4.11.0"
container:
image: ghcr.io/stertooy/gda-image:${{ matrix.gap-version }}-min
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Run package tests with default packages"
uses: sTertooy/gda-test-pkg@v1
with:
COVERAGE: ${{ matrix.coverage }}
- name: "Process coverage"
uses: stertooy/gda-coverage@v1
if: ${{ matrix.coverage }}
- name: "Upload coverage"
uses: codecov/codecov-action@v5
if: ${{ matrix.coverage }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
manual:
name: "Build manual"
runs-on: ubuntu-latest
if: ${{ !(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
container:
image: ghcr.io/stertooy/gda-image:tex-min
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Build manual"
uses: stertooy/gda-manual@v1
- name: "Upload manual"
uses: actions/upload-artifact@v4
with:
name: "Manual"
path: ./doc/manual.pdf
if-no-files-found: error