fix(bug): invoicing reason nil when calling from RetryGeneratingSubscriptionInvoicesJob #11116
Workflow file for this run
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
name: Run Spec | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
run-spec: | |
name: Run Spec | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:14-alpine | |
ports: | |
- "5432:5432" | |
env: | |
POSTGRES_DB: lago | |
POSTGRES_USER: lago | |
POSTGRES_PASSWORD: lago | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
env: | |
RAILS_ENV: test | |
DATABASE_URL: "postgres://lago:lago@localhost:5432/lago" | |
LAGO_REDIS_CACHE_URL: "redis://localhost:6379" | |
RAILS_MASTER_KEY: ${{ secrets.RAILS_TEST_KEY }} | |
SECRET_KEY_BASE: ${{ secrets.SECRET_KEY_BASE }} | |
LAGO_API_URL: https://api.lago.dev | |
LAGO_PDF_URL: https://pdf.lago.dev | |
SEGMENT_WRITE_KEY: ${{ secrets.SEGMENT_WRITE_KEY }} | |
LAGO_FROM_EMAIL: [email protected] | |
LAGO_CLICKHOUSE_ENABLED: true | |
LAGO_CLICKHOUSE_MIGRATIONS_ENABLED: true | |
LAGO_CLICKHOUSE_HOST: localhost | |
LAGO_CLICKHOUSE_DATABASE: default | |
LAGO_CLICKHOUSE_USERNAME: "" | |
LAGO_CLICKHOUSE_PASSWORD: "" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Ruby and gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3.4" | |
bundler-cache: true | |
- name: Start Clickhouse database | |
run: | | |
docker run -d --rm -p 8123:8123 -p 9000:9000 --ulimit nofile=262144:262144 -v ./clickhouse-s3:/var/lib/clickhouse-s3 -v ./ci/clickhouse/config.xml:/etc/clickhouse-server/config.d/config.xml clickhouse/clickhouse-server | |
shell: bash | |
- name: Generate RSA keys | |
run: ./scripts/generate.rsa.sh | |
- name: Set up Postgres database schema | |
run: bin/rails db:schema:load:primary | |
- name: Set up Clickhouse database schema | |
run: bin/rails db:migrate:clickhouse | |
- name: Dump Clickhouse database schema | |
run: bin/rails db:schema:dump:clickhouse | |
- name: Run tests | |
run: bundle exec rspec |