Rename VehicleTelemetry to Telemetry #1194
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 for all of ioki-ruby | |
on: [push] | |
jobs: | |
linting: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Pull repository | |
uses: actions/checkout@v4 | |
- name: Bundle install and cache result | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Run rubocop | |
run: | | |
bundle exec rubocop --ignore-unrecognized-cops | |
backend-services: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Pull repository | |
uses: actions/checkout@v4 | |
- name: Bundle install and cache result | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Run rspec | |
run: | | |
source .github/ci_workflow.env | |
bundle exec rspec |