Skip to content

updating net to io

updating net to io #21

Workflow file for this run

---
name: Check for lint/build errors
on:
pull_request:
branches:
- main
jobs:
lint:
name: Lint Code Base, Spelling, Link Check
runs-on: ubuntu-latest
# the enviroment to deploy to / use secrets from
environment: no-secret
# modify the default permissions of the GITHUB_TOKEN, so as to only allow least priveleges
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- name: Lint
uses: ConsenSys/docs-gha/lint@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}