Additional tests #2666
This file contains hidden or 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
| name: Additional tests | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '30 01 * * *' | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Set up system | |
| shell: bash | |
| run: | | |
| # bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh) | |
| sudo apt-get update -qq | |
| sudo apt-get install eatmydata | |
| sudo eatmydata apt-get install singularity-container gnupg moreutils strace git-annex | |
| pip install datalad datalad-container | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "CI Almighty" | |
| - name: Checkout this repository | |
| uses: actions/checkout@v5 | |
| - name: Test example in the README.md | |
| run: scripts/run-README-example |