Mercurial > dotfiles
comparison .github/workflows/test.yml @ 815:b528cf742ccf
ci: update CI config
author | zegervdv <zegervdv@me.com> |
---|---|
date | Tue, 05 Dec 2023 21:23:44 +0100 |
parents | e3937948d672 |
children | c88b4676d5b5 |
comparison
equal
deleted
inserted
replaced
814:8847b222a788 | 815:b528cf742ccf |
---|---|
5 | 5 |
6 jobs: | 6 jobs: |
7 install: | 7 install: |
8 strategy: | 8 strategy: |
9 matrix: | 9 matrix: |
10 os: [ubuntu-latest, macos-latest] | 10 os: [ubuntu-latest] |
11 runs-on: ${{ matrix.os }} | 11 runs-on: ${{ matrix.os }} |
12 env: | |
13 HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.BREW_TOKEN }} | |
14 steps: | 12 steps: |
15 - name: Set up Homebrew | |
16 uses: Homebrew/actions/setup-homebrew@master | |
17 | |
18 - name: Install chezmoi | 13 - name: Install chezmoi |
19 run: brew install chezmoi | 14 run: sh -c "$(curl -fsLS get.chezmoi.io)" |
20 | 15 |
21 - name: Install system dependencies | 16 - name: Install system dependencies |
22 run: sudo apt install -y libsqlite3-dev | 17 run: sudo apt install -y libsqlite3-dev |
23 if: matrix.os == 'ubuntu-latest' | 18 if: matrix.os == 'ubuntu-latest' |
24 | 19 |