diff options
Diffstat (limited to '.github/workflows/main.yml')
| -rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3052995..d4f2326 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,8 +14,8 @@ jobs: with: ruby-version: 3.0.3 bundler-cache: true - - run: ./script/setup - - run: ./script/lint + - run: ./bin/setup + - run: ./bin/lint test: runs-on: ubuntu-latest strategy: @@ -28,5 +28,5 @@ jobs: with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - - run: ./script/setup - - run: ./script/test + - run: ./bin/setup + - run: ./bin/test |
