ci #1375
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: ci | |
"on": | |
push: | |
paths: | |
- ".github/workflows/ci.yml" | |
- "lib/**" | |
- "*.gemspec" | |
- "spec/**" | |
- "Rakefile" | |
- "Gemfile" | |
- ".rubocop.yml" | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: "30 4 * * *" | |
create: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- "3.3" | |
- "3.2" | |
- "3.1" | |
- "3.0" | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install package dependencies | |
run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS" | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{matrix.ruby}} | |
- name: Install latest bundler | |
run: | | |
gem install bundler --no-document | |
- name: Bundle install | |
run: bundle install --jobs 4 --retry 3 | |
- name: Run all tests | |
run: script/ci | |
- uses: ravsamhq/notify-slack-action@v1 | |
if: github.ref_name == 'main' | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
status: ${{ job.status }} | |
notification_title: '{workflow} has {status_message}' | |
message_format: '{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}>' | |
footer: 'Linked Repo <{repo_url}|{repo}> | <{workflow_url}|View Workflow>' | |
notify_when: 'failure' | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |