Skip to content

Fix test directory path escaping test on Windows (#666) #3503

Fix test directory path escaping test on Windows (#666)

Fix test directory path escaping test on Windows (#666) #3503

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
gemfile:
- Gemfile
- gemfiles/Gemfile-rails-main
ruby: ["3.3", "3.4"]
include:
- gemfile: "gemfiles/Gemfile-rails-main"
experimental: true
runs-on: ${{ matrix.os }}
timeout-minutes: 25
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
continue-on-error: ${{ !!matrix.experimental }}
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }} with ${{matrix.gemfile}}
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Remove Gemfile.lock
if: (matrix.gemfile == 'Gemfile') && (matrix.ruby == 'head')
run: "rm ${{ matrix.gemfile }}.lock"
- name: Set up Ruby
uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
with:
bundler: latest
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
cache-version: 8
- name: Run tests
run: |
bundle exec rails db:setup
bundle exec rake
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Set up Ruby
uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
with:
bundler: latest
bundler-cache: true
cache-version: 8
- name: Typecheck
run: bundle exec srb tc
- name: Lint Ruby files
run: bin/rubocop