Add AGENT.md to structure agent work #276
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: Tests | |
| on: [push, pull_request] | |
| jobs: | |
| Testing: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| with: | |
| #repository: my-org/main | |
| path: mw-lib | |
| - name: Light unit tests | |
| uses: snakemake/snakemake-github-action@v1.25.1 | |
| with: | |
| directory: 'mw-lib' | |
| snakefile: 'mw-lib/Snakefile' | |
| args: '--cores 1 --use-conda light_unit_tests' | |
| - name: Heavy unit tests | |
| uses: snakemake/snakemake-github-action@v1.25.1 | |
| with: | |
| directory: 'mw-lib' | |
| snakefile: 'mw-lib/Snakefile' | |
| args: '--cores 1 --use-conda --dag heavy_unit_tests' | |
| - name: Integration tests | |
| uses: snakemake/snakemake-github-action@v1.25.1 | |
| with: | |
| directory: 'mw-lib' | |
| snakefile: 'mw-lib/Snakefile' | |
| args: '--cores 1 --use-conda --dag integration_tests' |