/
githubmirror
/
fzf
Обзор
Документация
Войти
/
githubmirror
/
fzf
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/macos.yml
45 строк
1 KB
dependabot[bot]
Bump ruby/setup-ruby from 1.314.0 to 1.321.0 (#4874)
27 июл 2026, 17:21
Не верифицирован
27 июл 2026, 17:21
d39595a
Код
Авторство
О чём код?
--- name: Test fzf on macOS on: push: branches: [ master, devel ] pull_request: branches: [ master ] workflow_dispatch: permissions: contents: read jobs: build: runs-on: macos-latest steps: - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up Go uses: actions/setup-go@v7 with: go-version: "1.23" - name: Setup Ruby uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1 with: ruby-version: 3.0.0 - name: Install packages run: HOMEBREW_NO_INSTALL_CLEANUP=1 brew install fish zsh tmux shfmt - name: Install Ruby gems run: gem install --no-document minitest:5.14.2 rubocop:1.0.0 rubocop-minitest:0.10.1 rubocop-performance:1.8.1 - name: Rubocop run: rubocop --require rubocop-minitest --require rubocop-performance - name: Unit test run: make test - name: Integration test run: make install && ./install --all && LC_ALL=C tmux new-session -d && ruby test/test_go.rb --verbose