Files
game-data/.woodpecker.yml
Gregory Ballantine 519955e57a
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Fixing unit tests
2025-08-12 21:30:17 -04:00

46 lines
1.0 KiB
YAML

pipeline:
test_ruby34:
group: tests
image: ruby:3.4
commands:
- 'gem install rake'
- 'bundle config set --local path "vendor/bundle"'
- 'bundle install'
- 'rake db:migrate'
- 'rake test:unit'
test_ruby33:
group: tests
image: ruby:3.3
commands:
- 'gem install rake'
- 'bundle config set --local path "vendor/bundle"'
- 'bundle install'
- 'rake db:migrate'
- 'rake test:unit'
test_ruby32:
group: tests
image: ruby:3.2
commands:
- 'gem install rake'
- 'bundle config set --local path "vendor/bundle"'
- 'bundle install'
- 'rake db:migrate'
- 'rake test:unit'
style:
image: ruby:3.4
commands:
- 'gem install rake'
- 'bundle config set --local path "vendor/bundle"'
- 'rake test:rubocop'
gitea_release:
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_api_key
base_url: https://git.metaunix.net
title: "${CI_COMMIT_TAG}"
when:
event: tag