build slate docs #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Slate docs | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: [2.7.0] | |
steps: | |
- name: Move into slate-docs directory | |
run: | | |
pwd | |
ls -l | |
- name: Move into slate-docs directory | |
run: cd slate-docs | |
working-directory: ${{ github.workspace }} | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- uses: actions/cache@v1 | |
with: | |
path: vendor/bundle | |
key: gems-${{ runner.os }}-${{ matrix.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }} | |
# necessary to get ruby 2.3 to work nicely with bundler vendor/bundle cache | |
# can remove once ruby 2.3 is no longer supported | |
- run: gem update --system | |
- run: bundle config set deployment 'true' | |
- run: bundle install | |
- run: bundle exec middleman build |