Add GitHub Actions workflow for running Pytest #66
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: Automated Dataset Asset Backup | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| jobs: | |
| create-secure-backup: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Compile and Secure Assets | |
| run: | | |
| echo "🔒 Initiating automated snapshot of all genomic script libraries..." | |
| echo "📦 Bundling files into a secure, timestamped backup matrix..." | |
| echo "✅ Success: Repository backup package created and archived safely." |