remove berkshires feed (SSLError) #256
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: Jekyll Feed Tests | |
'on': | |
push: | |
paths: | |
- 'hackergotchi/*' | |
- 'tests/feedcheck*.rb' | |
- .github/workflows/feeds.yml | |
- planet.ini | |
- Gemfile | |
- Gemfile.lock | |
branches: | |
- master | |
pull_request: | |
paths: | |
- 'hackergotchi/*' | |
- 'tests/feedcheck*.rb' | |
- .github/workflows/feeds.yml | |
- planet.ini | |
- Gemfile | |
- Gemfile.lock | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
feed-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Ruby | |
uses: ruby/[email protected] | |
with: | |
ruby-version: 3.2 | |
bundler-cache: true | |
- name: Install Dependencies | |
run: bundler install | |
- name: Check Feeds | |
run: bundle exec ruby tests/feedcheck.rb | |
- name: Save Job Summary | |
if: failure() | |
run: cat error-summary.md >> $GITHUB_STEP_SUMMARY |