Skip to content

test(ci): same tests on github and gitlab #468

test(ci): same tests on github and gitlab

test(ci): same tests on github and gitlab #468

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
- "mine"
pull_request:
branches:
- "main"
- "friends"
workflow_dispatch:
jobs:
clone-and-install:
strategy:
matrix:
ubuntu-os:
- 20
- 22
- 24
runs-on: ubuntu-${{ matrix.ubuntu-os }}
env:
CODESPACES: true
steps:
- uses: actions/checkout@v4
- name: install
run: ./install.sh
- name: chezmoi data
run: './root/bin/chezmoi data --format yaml'
- name: chezmoi ignored
run: './root/bin/chezmoi ignored'
- name: chezmoi managed
run: './root/bin/chezmoi managed -i all'
- name: installed font files
run: '[ ! -d "${HOME}/.local/share/fonts" ] ||
ls -lha ~/.local/share/fonts/**/*/'