Skip to content

Commit

Permalink
add default
Browse files Browse the repository at this point in the history
  • Loading branch information
iteyelmp committed Mar 13, 2024
1 parent f7a02c5 commit c146741
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 1 deletion.
56 changes: 56 additions & 0 deletions .github/workflows/validator.yml
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
14 changes: 13 additions & 1 deletion README.md
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.

0 comments on commit c146741

Please sign in to comment.