mirror of
https://github.com/disposable-email-domains/disposable-email-domains.git
synced 2024-11-22 16:48:13 +08:00
760a6e52b4
* replace travis with gha * install reqs * write a message when check is ok so it can be read easily in CI
18 lines
349 B
YAML
18 lines
349 B
YAML
name: validate blocklist entries
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
setup:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.x'
|
|
- run: pip install -r requirements.txt && python verify.py
|