-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 900 Bytes
/
tests.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
name: Tests
on: [push, pull_request]
env:
HOMEBREW_NO_AUTO_UPDATE: 1
jobs:
lint:
name: Lint Code Style
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Update Homebrew
run: brew update
- name: Tap ${{ github.repository }}
run: brew tap ${{ github.repository }} .
- name: Run Test-Bot
run: brew test-bot --tap ${{ github.repository }} --only-tap-syntax
test-b2:
name: Test B2 Formula
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Update Homebrew
run: brew update
- name: Tap ${{ github.repository }}
run: brew tap ${{ github.repository }} .
- name: Install formula
run: brew install font-yorkten
env:
HOMEBREW_B2_KEY_ID: ${{ secrets.B2_KEY_ID }}
HOMEBREW_B2_APPLICATION_KEY: ${{ secrets.B2_APPLICATION_KEY }}