From 1de8d3d3bc76bf90f6af5e2cad55073d46e4c4a0 Mon Sep 17 00:00:00 2001 From: Equious <76449140+Equious@users.noreply.github.com> Date: Mon, 26 Aug 2024 10:32:01 -0600 Subject: [PATCH 1/2] Create audit_action.yml --- .github/workflows/audit_action.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/audit_action.yml diff --git a/.github/workflows/audit_action.yml b/.github/workflows/audit_action.yml new file mode 100644 index 000000000..c08cde80a --- /dev/null +++ b/.github/workflows/audit_action.yml @@ -0,0 +1,30 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "dev" ] + pull_request: + branches: [ "dev" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: python audit.py From e8891129014cc6817fcb7766a20d8b5e5ddaa421 Mon Sep 17 00:00:00 2001 From: EngrPips <95760918+EngrPips@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:10:11 +0100 Subject: [PATCH 2/2] fix visible html tag --- .../1-simple-storage/4-setting-up-your-first-contract/+page.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/courses/solidity/1-simple-storage/4-setting-up-your-first-contract/+page.md b/courses/solidity/1-simple-storage/4-setting-up-your-first-contract/+page.md index 76a0b5310..4ae32aca8 100644 --- a/courses/solidity/1-simple-storage/4-setting-up-your-first-contract/+page.md +++ b/courses/solidity/1-simple-storage/4-setting-up-your-first-contract/+page.md @@ -12,7 +12,7 @@ In this lesson, you'll discover the basics of Remix and how to create and compil ### Remix IDE -Open Remix to get started. +Open this link [to get started]("https://remix.ethereum.org/") This is an IDE (Integrated Development Environment), a powerful tool used to build and develop smart contracts in Solidity. It helps to easily visualize and interact with our smart contracts. It contains a file explorer that hosts all the files, a Solidity compiler and a tab where you can deploy your contracts.