-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from aktsk/run-test-with-github-actions
Run test with github actions and remove Circleci
- Loading branch information
Showing
4 changed files
with
42 additions
and
52 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: rspec | ||
on: push | ||
jobs: | ||
rspec: | ||
runs-on: ubuntu-latest | ||
services: | ||
mysql: | ||
image: mysql:5 | ||
ports: | ||
- 3306:3306 | ||
env: | ||
MYSQL_ALLOW_EMPTY_PASSWORD: yes | ||
options: >- | ||
--health-cmd "mysqladmin ping" | ||
--health-interval 5s | ||
--health-timeout 3s | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
ruby: ["2.7","3.0","3.1","3.2"] | ||
env: | ||
BUNDLE_GEMFILE: .github/Gemfile | ||
MYSQL_HOST: 127.0.0.1 | ||
RAILS_ENV: test | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
bundler-cache: true | ||
- name: Install rake | ||
run: gem install rake | ||
- name: Setup database | ||
run: bundle exec rake db:prepare | ||
- name: run rspec | ||
run: bundle exec rspec |
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