ci: run on ubuntu 20.04 #7
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: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup FluentCI | |
uses: fluentci-io/setup-fluentci@v5 | |
with: | |
wasm: true | |
plugin: postgres | |
args: | | |
start | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
POSTGRES_USER: postgres | |
POSTGRES_DB: demo_rails5_test | |
- name: check style + security | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libpq-dev libmysqlclient-dev build-essential | |
fluentci run --wasm devbox setup | |
devbox init | |
devbox add ruby@$RUBY_VERSION | |
fluentci run --wasm ruby bundle_exec rubocop | |
fluentci run --wasm ruby bundle_exec brakeman | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
RUBY_VERSION: 2.7.3 | |
- name: RSpec - model tests | |
run: | | |
fluentci run --wasm ruby bundle_exec rspec spec/models | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: RSpec - controller tests | |
run: | | |
fluentci run --wasm ruby bundle_exec rspec spec/controllers | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: RSpec - feature specs | |
run: | | |
fluentci run --wasm ruby bundle_exec rake db:setup | |
fluentci run --wasm ruby bundle_exec rspec spec/features | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} |