Skip to content

test

test #68

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
schedule:
- cron: "0 10 * * 5" # JST 19:00 (Fri)
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 2.3
image:
- debian:buster
- debian:bullseye
- amazonlinux:2
- ubuntu:focal
- ubuntu:jammy
test_task:
- test:system
- test:user
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: bundle update
run: |
set -xe
bundle config --local path $PWD/vendor/bundle
bundle config --local jobs $(nproc)
bundle update --retry 3
- name: Run test
run: bundle exec rake ${TEST_TASK}
env:
SOURCE_IMAGE: ${{ matrix.image }}
TEST_TASK: ${{ matrix.test_task }}
- name: Slack Notification (not success)
uses: lazy-actions/slatify@master
if: "! success()"
continue-on-error: true
with:
job_name: ${{ format('*build* ({0}, {1}, {2})', matrix.ruby, matrix.image, matrix.test_task) }}
type: ${{ job.status }}
icon_emoji: ":octocat:"
url: ${{ secrets.SLACK_WEBHOOK }}
token: ${{ secrets.GITHUB_TOKEN }}
notify:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Slack Notification (success)
uses: lazy-actions/slatify@master
if: always()
continue-on-error: true
with:
job_name: '*build*'
type: ${{ job.status }}
icon_emoji: ":octocat:"
url: ${{ secrets.SLACK_WEBHOOK }}
token: ${{ secrets.GITHUB_TOKEN }}