tweak the PLACKUP_ARGS for prod #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run testsuite for grep.metacpan | |
on: | |
push: | |
# branches: [ main ] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the main repo | |
- name: Checkout current repo | |
uses: actions/checkout@v4 | |
with: | |
path: main-repo | |
# Checkout the metacpan-cpan-extracted-lite repo | |
- name: Checkout CPAN repo | |
uses: actions/checkout@v4 | |
with: | |
repository: metacpan/metacpan-cpan-extracted-lite | |
path: metacpan-cpan-extracted-lite | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup container | |
run: | | |
cd main-repo | |
make test-setup | |
# Set up Docker Compose | |
- name: Run tests | |
run: | | |
cd main-repo | |
make test |