-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (34 loc) · 864 Bytes
/
ci.yml
File metadata and controls
38 lines (34 loc) · 864 Bytes
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
name: Homebrew
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 9 * * 1'
jobs:
audit:
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- run: brew tap rustls/ci --custom-remote .
- run: brew audit --online --strict rustls/ci/curl
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- run: brew tap rustls/ci --custom-remote .
- run: brew reinstall --verbose rustls/ci/curl
- run: brew test rustls/ci/curl
style:
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- run: brew tap rustls/ci --custom-remote .
- run: brew style rustls/ci/curl