Fix title in index.html #2
This file contains 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: Running Solidity Unit Tests | |
on: [push] | |
jobs: | |
run_sol_contracts_job: | |
runs-on: ubuntu-latest | |
name: A job to run solidity unit tests on github actions CI | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Environment Setup | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.0.0 | |
- name: Run SUT Action | |
uses: EthereumRemix/sol-test@v1 | |
with: | |
test-path: 'apps/remix-ide/contracts/tests' | |
compiler-version: '0.8.15' |