feat: add font-juisee-nf
v0.1.1
#196
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: test-install | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
pacaptr: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- if: startsWith(${{ matrix.os }}, "ubuntu") | |
run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | |
- name: Test install | |
run: | | |
brew install ./pacaptr.rb | |
pacaptr --help | |
pacaptr-head: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- if: startsWith(${{ matrix.os }}, "ubuntu") | |
run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | |
- name: Test install | |
run: | | |
brew install ./pacaptr.rb --HEAD | |
pacaptr --help | |
alire: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- if: startsWith(${{ matrix.os }}, "ubuntu") | |
run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | |
- name: Test install | |
run: | | |
brew install ./alire.rb | |
alr help | grep USAGE | |
ting: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- if: startsWith(${{ matrix.os }}, "ubuntu") | |
run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | |
- name: Test install | |
run: | | |
brew install ./ting.rb | |
ting --help | |
claveilleur: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test install | |
run: | | |
brew install ./claveilleur.rb | |
claveilleur --help | |
claveilleur-head: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test install | |
run: | | |
brew install ./claveilleur.rb --HEAD | |
claveilleur --help | |
ouverture: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test install | |
run: | | |
brew install ./ouverture.rb | |
ovt | |
neovim-nightly: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test install | |
run: | | |
brew install ./neovim-nightly.rb | |
nvim --help | |
casks: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test install | |
run: | | |
brew install ./Casks/*.rb |