Skip to content

working-directory my_project #38

working-directory my_project

working-directory my_project #38

Workflow file for this run

name: Run Tests
on:
push:
branches:
- '*'
jobs:
run-tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
path: 'my_project'
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.0
bundler-cache: true
- name: Build stub and run tests
run: |
bundle exec rake build_stub
bundle exec rake test
working-directory: 'C:\my_project'