Skip to content

ci

ci #1126

Workflow file for this run

# this file is managed by dry-rb/devtools project
name: ci
on:
push:
paths:
- ".github/workflows/ci.yml"
- "lib/**"
- "*.gemspec"
- "spec/**"
- "Rakefile"
- "Gemfile"
- "Gemfile.devtools"
- ".rubocop.yml"
- "project.yml"
pull_request:
branches:
- main
schedule:
- cron: "30 4 * * *"
create:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "3.2"
- "3.1"
- "3.0"
include:
- ruby: "3.1"
coverage: "true"
env:
CLASSPATH: "" # tmp jruby build workaround
COVERAGE: ${{matrix.coverage}}
CODACY_RUN_LOCAL: true
CODACY_PROJECT_TOKEN: ${{secrets.CODACY_PROJECT_TOKEN}}
steps:
- uses: ravsamhq/notify-slack-action@v1
if: always()
with:
status: ${{ job.status }}
notify_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
- name: Install latest bundler
run: |
gem install bundler --no-document
bundle config set without 'tools benchmarks docs'
- name: Bundle install
run: bundle install --jobs 4 --retry 3
- name: Run all tests
run: bundle exec rake
release:
runs-on: ubuntu-latest
if: contains(github.ref, 'tags') && github.event_name == 'create'
needs: tests
env:
GITHUB_LOGIN: dry-bot
GITHUB_TOKEN: ${{secrets.GH_PAT}}
steps:
- uses: actions/checkout@v3
- 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: 2.6
- name: Install dependencies
run: gem install ossy --no-document
- name: Trigger release workflow
run: |
tag=$(echo $GITHUB_REF | cut -d / -f 3)
ossy gh w dry-rb/devtools release --payload "{\"tag\":\"$tag\",\"tag_creator\":\"$GITHUB_ACTOR\",\"repo\":\"$GITHUB_REPOSITORY\"}"