forked from skwp/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (35 loc) · 792 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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/**/*/'