mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 20:29:10 +00:00
Erica Marigold
c4214c9559
Brew maintainers already build from source and publish the compiled binaries, so there is no point of testing it on our side. If they failed to compile from source, they'd raise issues on their side.
15 lines
296 B
YAML
15 lines
296 B
YAML
name: Homebrew Test
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Set up Homebrew
|
|
id: set-up-homebrew
|
|
uses: Homebrew/actions/setup-homebrew@master
|
|
|
|
- name: Test
|
|
run: brew install lune && brew test lune && lune
|