fix: Add http scheme support and removed the constraint from public keys table #101
Workflow file for this run
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: Linter | |
# Default shell is `sh` | |
# which is old, use bourne-again version instead | |
defaults: | |
run: | |
shell: bash | |
on: | |
pull_request: | |
jobs: | |
lint: | |
name: Lint changes | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }} | |
APPLY_FIXES: none | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.ATALA_GITHUB_TOKEN }} | |
fetch-depth: 0 | |
- name: Mega-Linter | |
id: ml | |
uses: megalinter/megalinter@v7 | |
- name: Archive production artifacts | |
if: success() || failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Mega-Linter reports | |
path: | | |
megalinter-reports | |
mega-linter.log |