Skip to content

Commit

Permalink
Add comments job
Browse files Browse the repository at this point in the history
  • Loading branch information
soutaro committed Feb 11, 2022
1 parent ac5118c commit 5e5bc02
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/comments.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: RBS Comments

on:
push:
branches:
- master
pull_request: {}

jobs:
test:
runs-on: "ubuntu-latest"
container:
image: rubylang/ruby:3.1-focal
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
apt-get update
apt-get install -y libdb-dev
- name: Update rubygems & bundler
run: |
ruby -v
gem update --system
- name: bundle config set with
run: |
echo "NO_MINITEST=true" >> $GITHUB_ENV
bundle config set --local without 'minitest'
if: "contains(matrix.container_tag, 'master-nightly')"
- name: bin/setup
run: |
bin/setup
- name: Run test
run: |
bundle exec rake annotate confirm_annotation

0 comments on commit 5e5bc02

Please sign in to comment.