diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 00000000..a407d506 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,66 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +name: "CodeQL" + +on: + push: + branches: ["main"] + pull_request: + # The branches below must be a subset of the branches above + branches: ["main"] + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: ["go"] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repositories and submodules + uses: actions/checkout@v4 + with: + submodules: recursive + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + queries: security-extended,security-and-quality + + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + + # ℹī¸ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + + # - run: | + # echo "Run, Build Application using script" + # ./location_of_script_within_repo/buildscript.sh + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml deleted file mode 100644 index cc88b15b..00000000 --- a/.github/workflows/e2e.yml +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright (C) 2024, Ava Labs, Inc. All rights reserved. -# See the file LICENSE for licensing terms. - -name: E2E Tests - -on: - push: - branches: - - main - pull_request: - branches: - - "**" - -jobs: - e2e_tests: - name: e2e_tests - runs-on: ubuntu-20.04 - - steps: - - name: Checkout this repository - uses: actions/checkout@v4 - with: - submodules: recursive - - - name: Set Go version - run: | - source ./scripts/versions.sh - echo GO_VERSION=$GO_VERSION >> $GITHUB_ENV - - - name: Setup Go - uses: actions/setup-go@v5 - with: - go-version: ${{ env.GO_VERSION }} - - - name: Install Foundry - run: ./scripts/install_foundry.sh - - - name: Run E2E Tests - # Forge installs to BASE_DIR, but updates the PATH definition in $HOME/.bashrc - run: | - export PATH=$PATH:$HOME/.foundry/bin - export PATH="$PATH:$GOPATH/bin" - ./scripts/e2e_test.sh diff --git a/.github/workflows/gomod_checker.yml b/.github/workflows/gomod_checker.yml new file mode 100644 index 00000000..1c33dfb2 --- /dev/null +++ b/.github/workflows/gomod_checker.yml @@ -0,0 +1,31 @@ +name: go.mod Check + +on: + push: + branches: + - main + pull_request: + branches: + - "**" + +jobs: + gomod_check: + name: Check go.mod + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + + - run: | + source ./scripts/versions.sh + echo GO_VERSION=$GO_VERSION >> $GITHUB_ENV + + - uses: actions/setup-go@v5 + with: + go-version: ${{ env.GO_VERSION }} + + - run: go mod tidy + - run: git --no-pager diff -- go.mod go.sum # This prints the diff + - run: git --no-pager diff --quiet -- go.mod go.sum # This errors if there is a diff diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml new file mode 100644 index 00000000..6fd1f5a5 --- /dev/null +++ b/.github/workflows/snyk.yml @@ -0,0 +1,29 @@ +name: Snyk +on: + push: + branches-ignore: + - "dependabot/**" + pull_request: + branches: + - "dependabot/**" +jobs: + golang-snyk: + runs-on: ubuntu-20.04 + steps: + - name: Checkout repositories and submodules + uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Run Snyk + uses: snyk/actions/golang@0.4.0 + continue-on-error: true # To make sure that SARIF upload gets called + env: + SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} + with: + args: --sarif-file-output=snyk.sarif --all-projects --detection-depth=4 + + - name: Upload result to GitHub Code Scanning + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: snyk.sarif diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fd68169e..dabb6779 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,3 +26,56 @@ jobs: export PATH=$PATH:$HOME/.foundry/bin cd contracts/ forge test -vvv + + go-unit-tests: + runs-on: ubuntu-20.04 + + steps: + - name: Checkout repositories and submodules + uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Set Go version + run: | + source ./scripts/versions.sh + echo GO_VERSION=$GO_VERSION >> $GITHUB_ENV + + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GO_VERSION }} + + - name: Run Go unit tests + run: | + source scripts/constants.sh + go test ./... + + e2e_tests: + name: e2e_tests + runs-on: ubuntu-20.04 + steps: + - name: Checkout repositories and submodules + uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Set Go version + run: | + source ./scripts/versions.sh + echo GO_VERSION=$GO_VERSION >> $GITHUB_ENV + + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GO_VERSION }} + + - name: Install Foundry + run: ./scripts/install_foundry.sh + + - name: Run E2E Tests + # Forge installs to BASE_DIR, but updates the PATH definition in $HOME/.bashrc + run: | + export PATH=$PATH:$HOME/.foundry/bin + export PATH="$PATH:$GOPATH/bin" + ./scripts/e2e_test.sh