Display CI/CD with better job name #116
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test GEP on different platforms | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**' | |
- '!*.md' | |
pull_request: | |
paths: | |
- '**' | |
- '!*.md' | |
schedule: | |
- cron: '0 1 * * *' | |
jobs: | |
tests: | |
name: Test GEP on ${{ matrix.images }} (${{ matrix.runner == 'ubuntu-24.04-arm' && 'aarch64' || 'x86_64' }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
images: [ubuntu24.04, ubuntu22.04, ubuntu20.04, arch] | |
runner: [ubuntu-24.04, ubuntu-24.04-arm] | |
exclude: | |
- images: arch | |
runner: ubuntu-24.04-arm | |
runs-on: ${{ matrix.runner }} | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Docker Build ${{ matrix.images }} | |
run: docker compose build ${{ matrix.images }} | |
- name: Test on ${{ matrix.images }} | |
run: docker compose run ${{ matrix.images }} ./tests.sh |