diff --git a/.github/workflows/verify-merge.yml b/.github/workflows/verify-merge.yml new file mode 100644 index 0000000..5b917e3 --- /dev/null +++ b/.github/workflows/verify-merge.yml @@ -0,0 +1,12 @@ +name: ci/gh-actions/verify-merge + +on: [push, pull_request] + +jobs: + verify-merge: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v1 + - name: verify-merge + run: python3 ./verify-merge.py --import-keys + diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a992153..0000000 --- a/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: python - -python: - - "3.7.0" - -script: - - python ./verify-merge.py --import-keys