Update README.md #4
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
name: CreoIDE Workflow | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
CreoIDE-Analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install CreoIDE | |
run: | | |
wget https://creoide.com/download/creoide-latest-linux.tar.gz | |
tar -xf creoide-latest-linux.tar.gz | |
mv creoide-latest-linux creoide | |
export PATH=$PATH:$PWD/creoide/bin | |
- name: Connect to GitHub | |
run: | | |
creoide auth github -u ${{ secrets.GITHUB_USERNAME }} -p ${{ secrets.GITHUB_TOKEN }} | |
- name: Analyze Code | |
run: | | |
creoide analyze $GITHUB_WORKSPACE -p creoide_config.json | |
- name: Report Results | |
run: | | |
creoide report -f creoide_results.json | |
# ... Additional jobs for Testing and Deployment ... | |