-
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (34 loc) · 867 Bytes
/
ci.yml
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
name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup chezmoi
run : sudo snap install chezmoi --classic
- name: Install dotfiles
run: chezmoi apply -S . -v
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup chezmoi
run : choco install chezmoi
- name: Install dotfiles
run: chezmoi apply -S . -v
dependabot-automerge:
needs: [test-ubuntu, test-windows]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
if: ${{ github.event_name == 'pull_request' }}
steps:
- uses: fastify/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}