-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Validator | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
|
||
env: | ||
RUBY_VERSION: '2.6' | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
validator: | ||
name: Validator | ||
runs-on: ubuntu-latest | ||
steps: | ||
- id: setup-ruby | ||
name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ env.RUBY_VERSION }} | ||
|
||
- id: checkout | ||
name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- id: install-gem | ||
name: Install gem | ||
run: | | ||
gem install awesome_bot | ||
- id: validate | ||
name: Validate | ||
run: | | ||
awesome_bot README.md --request-delay 0.5 --allow-timeout --allow-redirect | ||
- id: upload-artifact | ||
name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
if-no-files-found: warn | ||
name: ab-results | ||
path: | | ||
ab-results-README.md.json | ||
ab-results-README.md-filtered.json | ||
ab-results-README.md-markdown-table.json | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
# Awesome Web3 [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/ethstorage/awesome-web3/) | ||
|
||
A curated list of awesome Web3 repos, libraries, tools and more. | ||
A curated list of awesome Web3 apps, libraries, tools and more. | ||
|
||
- [Awesome Web3](#awesome-web3-awesomehttpscdnrawgitcomsindresorhusawesomed7305f38d29fed78fa85652e3a63e154dd8e8829mediabadgesvghttpsgithubcomethstorageawesome-web3) | ||
- [Vitalik Blog](https://vitalikblog.w3eth.io/) - Decentralized vitalik blog. | ||
- [W3Box](https://w3-box.w3eth.io/) - A public file hosting service based on the Web3Q chain. Anyone can upload public files without permission, and only the uploader can delete uploaded files. | ||
- [W3Drive](https://w3-drive.w3eth.io/) - Your Private Hard Drive on Blockchain. | ||
- [W3Mail](https://w3-email.w3eth.io/) - Fully Decentralized and Safe Email Service. | ||
- [QRobot](https://w3-qrobot.w3eth.io/) - A collection of cute robots that can be minted freely on Web3Q blockchain. All the metadata has been uploaded to Web3Q in advance, and the traits of the robot will be fully determined by an on-chain random number generated when you mint. | ||
- [DBlog](https://w3-blog.w3eth.io/) - A decentralized blog. | ||
- [Git3](https://github.com/git3protocol/git3-cli) - Decentralized git hosting protocol for web3. | ||
- [W3 Uniswap](https://app-uniswap-org.w3eth.io/#/swap?chain=mainnet) - Decentralized Uniswap web page. | ||
- [W3 ENS](https://app-ens-domain.w3eth.io/) - Decentralized ENS web page. | ||
|