Try mirroring #83
This file contains 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: Minicrawler tests | |
on: | |
- workflow_dispatch | |
- pull_request | |
- push | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/prepare | |
- uses: ./.github/actions/build | |
- name: make check | |
run: make check | |
integration: | |
runs-on: ubuntu-latest | |
services: | |
httpbin: | |
image: kennethreitz/httpbin | |
ports: | |
- 80:80 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/prepare | |
- uses: ./.github/actions/build | |
- name: make integration | |
run: | | |
make -C integration-tests check | |
cat integration-tests/test-suite.log | |
try: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/prepare | |
- uses: ./.github/actions/build | |
- name: try run minicrawler | |
run: ./minicrawler5 https://www.testomato.com/humans.txt |