Skip to content

Commit

Permalink
Merge pull request #445 from IATI/gh-action-version-2.01
Browse files Browse the repository at this point in the history
Migration to GitHub Actions for version 2.01
  • Loading branch information
nosvalds authored Dec 15, 2020
2 parents 3e994d9 + 4b2ee6b commit f3525f5
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 10 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: CI_Tests

on:
push:
branches: [version-2.01]
pull_request:
branches: [version-2.01]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6"]

steps:
- name: Install xmllint
run: sudo apt-get install libxml2-utils

- uses: actions/checkout@v2

- name: xmllint the schema
run: xmllint --schema http://www.w3.org/2001/XMLSchema.xsd --noout *.xsd

- name: Run complete schema test suite
run: |
cd tests
./run-tests.sh
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
International Aid Transparency Initiative (IATI) XML Schemas
============================================================

.. image:: https://travis-ci.org/IATI/IATI-Schemas.svg?branch=version-2.01
:target: https://travis-ci.org/IATI/IATI-Schemas
.. image:: https://github.com/IATI/IATI-Schemas/workflows/CI_Tests/badge.svg
:target: https://github.com/IATI/IATI-Schemas/actions

| IATI Support <[email protected]>
| Release 2.01, 2014-10-21
Expand Down

0 comments on commit f3525f5

Please sign in to comment.