-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #445 from IATI/gh-action-version-2.01
Migration to GitHub Actions for version 2.01
- Loading branch information
Showing
3 changed files
with
33 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|