diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..ddfeb25f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: JSON Schema +on: + - push +jobs: + specs: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - run: pip install --requirement requirements.txt + - run: xml2rfc --version + - run: make all + - uses: actions/upload-artifact@v2 + with: + path: | + *.(html|txt) + !requirements.txt diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 00e794b4..00000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: python -install: -- pip install "xml2rfc~=2.20" -before_script: -- TAG=$(git tag -l --points-at HEAD) -script: -- xml2rfc -V -- make all