Add timezones #256
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: CI | |
on: | |
push: | |
branches: ['*'] | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
env: | |
TZ: Asia/Yekaterinburg | |
PHOTOSTORAGE_SMTP_USER: auto@tretyakov-ma.ru | |
RAILS_ENV: test | |
services: | |
redis: | |
image: redis | |
ports: | |
- 6379/tcp | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: postgres | |
PGUSER: postgres | |
POSTGRES_DB: photos | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: | |
- 5432/tcp | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, | |
# change this to (see https://github.com/ruby/setup-ruby#versioning): | |
# uses: ruby/setup-ruby@v1 | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Configure | |
run: > | |
echo -e "test:\n url: redis://localhost:${{ job.services.redis.ports['6379'] }}/0" > config/redis.yml | |
- name: Create DB | |
run: bundle exec rails db:migrate | |
env: | |
DATABASE_URL: "postgresql://postgres@localhost:${{ job.services.postgres.ports['5432'] }}/photos" | |
- name: Rubocop | |
run: bundle exec ./rubocop --display-style-guide --extra-details | |
- name: Rails App Tests | |
run: bundle exec rspec | |
env: | |
DATABASE_URL: "postgresql://postgres@localhost:${{ job.services.postgres.ports['5432'] }}/photos" | |
LOG_LEVEL: error | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Prepare go | |
run: sudo apt update && sudo apt install -y --no-install-recommends libvips-dev | |
- name: Test Proxy Service | |
run: cd proxy_service && go test -v ./... |