Skip to content

Commit

Permalink
Merge pull request #1 from rustls/ci
Browse files Browse the repository at this point in the history
Fix and improve github actions CI
  • Loading branch information
kpcyrd authored Aug 6, 2024
2 parents d8434c8 + 61a9a64 commit fdfae84
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,24 @@ on:
- cron: '0 9 * * 1'

jobs:
audit:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: brew tap rustls/ci --custom-remote .
- run: brew audit --online --strict rustls/ci/curl

test:
runs-on: macos-latest
steps:
- run: brew install --verbose ./Formula/c/curl.rb
- run: brew test ./Formula/c/curl.rb
- uses: actions/checkout@v4
- 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:
- run: brew style ./Formula/c/curl.rb
- uses: actions/checkout@v4
- run: brew tap rustls/ci --custom-remote .
- run: brew style rustls/ci/curl

0 comments on commit fdfae84

Please sign in to comment.