We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64f5b43 commit d3dcc22Copy full SHA for d3dcc22
.github/workflows/c-cpp.yml
@@ -37,3 +37,27 @@ jobs:
37
- name: Run Unit Tests
38
working-directory: ${{github.workspace}}/build
39
run: ./ConcurrentHashMapTest
40
+
41
+ test:
42
+ name: Run tests and collect coverage
43
+ runs-on: ubuntu-latest
44
+ steps:
45
+ - name: Checkout
46
+ uses: actions/checkout@v4
47
+ with:
48
+ fetch-depth: 2
49
50
+ - name: Set up Node
51
+ uses: actions/setup-node@v4
52
53
+ - name: Install dependencies
54
+ run: npm install
55
56
+ - name: Run tests
57
+ run: npx jest --coverage
58
59
+ - name: Upload results to Codecov
60
+ uses: codecov/codecov-action@v5
61
62
+ token: ${{ secrets.CODECOV_TOKEN }}
63
+ slug: diffstorm/ConcurrentHashMap
0 commit comments