Add new test config, which covers all tests

This commit is contained in:
Matthias 2023-03-02 00:23:22 +01:00 committed by Matthias Endler
parent 49d1d3accb
commit 08d71e6196

View file

@ -26,7 +26,11 @@ jobs:
- uses: taiki-e/install-action@nextest
- uses: Swatinem/rust-cache@v2
- name: Run cargo test
run: cargo nextest run --all-targets
run: cargo nextest run --all-targets --all-features --filter-expr '!test(test_exclude_example_domains)'
- name: Run cargo test (include example domains)
run: cargo nextest run --filter-expr 'test(test_exclude_example_domains)'
- name: Run doctests
run: cargo test --doc
lint:
runs-on: ubuntu-latest