File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed
Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ test :
11+ runs-on : ubuntu-latest
12+
13+ strategy :
14+ matrix :
15+ ruby-version : ['3.0', '3.1', '3.2', '3.3']
16+
17+ steps :
18+ - uses : actions/checkout@v4
19+
20+ - name : Set up Ruby ${{ matrix.ruby-version }}
21+ uses : ruby/setup-ruby@v1
22+ with :
23+ ruby-version : ${{ matrix.ruby-version }}
24+ bundler-cache : false
25+
26+ - name : Install dependencies
27+ run : |
28+ gem install bundler
29+ gem install test-unit
30+
31+ - name : Build extension
32+ run : |
33+ ruby extconf.rb
34+ make
35+
36+ - name : Run tests
37+ run : |
38+ sudo ruby test/basic_test.rb
Original file line number Diff line number Diff line change 44MANIFEST
55README
66README.euc
7- ruby-shadow.gemspec
7+ chef- ruby-shadow.gemspec
88pwd/shadow.c
99pwd/depend
1010shadow/shadow.c
You can’t perform that action at this time.
0 commit comments