File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3232 ruby : ['3.4', '3.3', '3.2']
3333 # macOS is excluded because of the difficulty in assuming a macOS shell behavior.
3434 os : ['ubuntu-latest', 'windows-latest']
35+ include :
36+ - os : ubuntu-latest
37+ shell : bash
38+ - os : windows-latest
39+ shell : cmd
3540 runs-on : ${{ matrix.os }}
3641 name : Gem with Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
3742 steps :
4348 bundler-cache : true
4449 - name : Install
4550 run : rake install
46- - name : Test command
51+ - name : Test command (bash)
52+ if : ${{ matrix.shell == 'bash' }}
4753 run : test/script/command-test.bash
54+ shell : bash
55+ - name : Test command (cmd)
56+ if : ${{ matrix.shell == 'cmd' }}
57+ run : test/script/command-test.bat
58+ shell : cmd
Original file line number Diff line number Diff line change 1+ @ echo on
2+ call tailcheck --version || exit /b 1
3+
4+ @ echo on
5+ call tailcheck --help || exit /b 1
6+
7+ @ echo on
8+ call tailcheck test/data/pos_normal || exit /b 1
9+
10+ @ echo on
11+ call tailcheck test/data/pos_normal test/data/pos_duplicate_unwatched_path && exit /b 1
12+
13+ @ echo on
14+ call tailcheck --follow_inodes test/data/pos_follow_inodes_normal || exit /b 1
You can’t perform that action at this time.
0 commit comments