build_container.sh for ARM64 and fixed issue #43 #1
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: Pull workflow | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: github/super-linter@v4 | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
VALIDATE_JAVASCRIPT_ES: true | |
VALIDATE_PYTHON_BLACK: true | |
VALIDATE_HTML: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
security: | |
name: Static Security | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run Microsoft Security DevOps | |
uses: microsoft/security-devops-action@latest | |
id: msdo | |
- name: Upload results to Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: ${{ steps.msdo.outputs.sarifFile }} |