Customize rails application #9
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: CI app-rails | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- app-rails/** | |
- .github/workflows/ci-app-rails.yml | |
pull_request: | |
paths: | |
- app-rails/** | |
- .github/workflows/ci-app-rails.yml | |
defaults: | |
run: | |
working-directory: ./app-rails | |
jobs: | |
# As an enhancement, it is possible to share the built docker image and share | |
# it across jobs as described in: | |
# https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts#passing-data-between-jobs-in-a-workflow | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# https://github.com/docker/compose/issues/1973 | |
- name: Create required env files | |
working-directory: ./ | |
run: | | |
touch ./app-rails/.env | |
- run: make lint | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: make init-container | |
- run: make precompile-assets | |
- name: Start tests | |
run: make test |