Skip to content

pricing-coverage

pricing-coverage #63

name: pricing-coverage
on:
workflow_dispatch:
repository_dispatch:
types:
- script
push:
branches:
- master
paths:
- "ecommerce/pricing/Gemfile.lock"
- ".github/workflows/pricing-coverage.yml"
pull_request:
paths:
- "ecommerce/pricing/Gemfile.lock"
- ".github/workflows/pricing-coverage.yml"
schedule:
- cron: '0 17 * * *'
jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby-3.4.6
bundler-cache: true
working-directory: ecommerce/pricing
- name: Run tests
run: make -C ecommerce/pricing test
mutate:
needs: test
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby-3.4.6
bundler-cache: true
working-directory: ecommerce/pricing
- name: Run full mutation testing
run: make -C ecommerce/pricing mutate