Skip to content

Change matrix job name #653

Change matrix job name

Change matrix job name #653

Workflow file for this run

---
name: 'Test'
on:
pull_request: {}
push:
branches:
- 'master'
schedule:
- cron: '0 0 * * 1'
jobs:
bootstrap:
name: 'Bootstrap (Ubuntu ${{ matrix.ubuntu_version }}, personal=${{ matrix.personal }}, work=${{ matrix.work }})'
runs-on: 'ubuntu-latest'
continue-on-error: "${{ matrix.ubuntu_version == 'devel' }}"
container: 'ubuntu:${{ matrix.ubuntu_version }}'
env:
DEBIAN_FRONTEND: 'noninteractive'
GH_TOKEN: '${{ github.token }}'
strategy:
fail-fast: false
matrix:
personal:
- false
- true
work:
- false
ubuntu_version:
- '22.04'
- '24.04'
- 'latest'
- 'rolling'
- 'devel'
steps:
- name: 'Install depdendencies'
run: |
apt-get update
apt-get install --yes curl git gpg software-properties-common sudo wget
- name: 'Checkout repository'
uses: 'actions/checkout@v4'
- name: 'Setup Chezmoi'
uses: './.github/actions/chezmoi'
- name: 'Initialize Chezmoi'
run: 'chezmoi init --promptBool "Enable personal profile=${{ matrix.personal }},Enable work profile=${{ matrix.work }}" .'
- name: 'Run Chezmoi'
run: 'chezmoi apply --keep-going'