feat: comprehensive history protection system #20
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: CI | |
| on: | |
| push: | |
| branches: [ main, dev ] | |
| pull_request: | |
| branches: [ main, dev ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up python | |
| run: echo "Setting up python environment" | |
| - name: Run tests | |
| run: | | |
| echo "Running tests for git-repokit" | |
| # Add testing commands here | |
| - name: Build | |
| run: | | |
| echo "Building git-repokit" | |
| # Add build commands here |