8000 Merge pull request #2021 from DeinAlptraum/pull_vs_fetch · bkzhn/progit2@3404a4f · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
< 713E /svg>

[pull] main from progit:main #6

[pull] main from progit:main

[pull] main from progit:main #6

Workflow file for this run

name: Pull Request Build
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build book
run: bundle exec rake book:build
0