Skip to content

feat!: modernize apache2 defaults and testing #51

feat!: modernize apache2 defaults and testing

feat!: modernize apache2 defaults and testing #51

---
name: 'Copilot Setup Steps'
"on":
workflow_dispatch:
push:
paths:
- .github/workflows/copilot-setup-steps.yml
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml
jobs:
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out code
uses: actions/checkout@v5
- name: Prepare Gemfile
run: |
if [ ! -f Gemfile ]; then
{
echo "source 'https://rubygems.org'"
echo "gem 'berkshelf'"
} > Gemfile
fi
shell: bash
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler-cache: true
- name: Install cookbooks
run: bundle exec berks install
shell: bash