Skip to content

Commit

Permalink
Merge pull request #186 from EngrPips/htmltagfix
Browse files Browse the repository at this point in the history
fix the visible html tag in written lesson
  • Loading branch information
solhosty authored Sep 2, 2024
2 parents ca7d245 + e889112 commit 0d5ac3a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/audit_action.yml
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ In this lesson, you'll discover the basics of Remix and how to create and compil

### Remix IDE

Open <a href="https://remix.ethereum.org/" target="_blank" style="color: blue; text-decoration: underline;">Remix</a> 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.

Expand Down

0 comments on commit 0d5ac3a

Please sign in to comment.