Skip to content

Commit

Permalink
testing - add github ci file
Browse files Browse the repository at this point in the history
  • Loading branch information
aviaryan committed Oct 21, 2021
1 parent abdbf96 commit b1b0793
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:

runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0']

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Setup Packages
run: gem install awesome_bot
- name: Run tests
run: bash test.sh

1 comment on commit b1b0793

@ALSIHMAN
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ู…ุฑุญุจุง ู‡ู„ ู…ู† ุงู„ู…ู…ูƒู† ุนู…ู„ ุชุตู…ูŠู… ูˆุงุฌู‡ู‡ ู„ู„ู…ูˆู‚ุน

Please sign in to comment.