We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05a8b14 commit e8f7378Copy full SHA for e8f7378
.github/workflows/testsuite.yml
@@ -0,0 +1,31 @@
1
+name: Run testsuite for grep.metacpan
2
+
3
+on:
4
+ push:
5
+ # branches: [ main ]
6
+ pull_request:
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ # Checkout the main repo
14
+ - name: Checkout current repo
15
+ uses: actions/checkout@v4
16
+ with:
17
+ path: main-repo
18
19
+ # Checkout the metacpan-cpan-extracted-lite repo
20
+ - name: Checkout CPAN repo
21
22
23
+ repository: metacpan/metacpan-cpan-extracted-lite
24
+ path: metacpan-cpan-extracted-lite
25
+ token: ${{ secrets.GITHUB_TOKEN }}
26
27
+ # Set up Docker Compose
28
+ - name: Run tests
29
+ run: |
30
+ cd main-repo
31
+ make test
0 commit comments