From 6a1272df4ce35581ff501e8b6d61e14d603ce05c Mon Sep 17 00:00:00 2001 From: mvonsteinkirch Date: Sat, 24 Dec 2022 20:07:49 -0800 Subject: [PATCH] Initial commit --- .github/.gitkeep | 1 + .github/workflows/validate_urls.yml | 31 +++++++++++++++++++++++++++++ README.md | 21 +++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 .github/.gitkeep create mode 100644 .github/workflows/validate_urls.yml create mode 100644 README.md diff --git a/.github/.gitkeep b/.github/.gitkeep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.github/.gitkeep @@ -0,0 +1 @@ + diff --git a/.github/workflows/validate_urls.yml b/.github/workflows/validate_urls.yml new file mode 100644 index 0000000..8c52b14 --- /dev/null +++ b/.github/workflows/validate_urls.yml @@ -0,0 +1,31 @@ +name: validate links + +on: [push, pull_request] + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true + +jobs: + unit: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - ubuntu-latest + + steps: + - name: checkout + uses: actions/checkout@v3 + + - name: set up ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 3.1 + bundler-cache: true + + - name: install awesome_bot + run: gem install awesome_bot + + - name: validate URLs + run: awesome_bot README.md --allow-redirect --request-delay 0.4 diff --git a/README.md b/README.md new file mode 100644 index 0000000..5c910c2 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +## 🥷🏻🛵⛓️ playing pvp in the metaweb: solidity edition + +
+ +### in this repo + +
+ +--- + +### solidity resources + +* [solidity docs](https://docs.soliditylang.org/en/v0.8.12/) +* [openzeppelin docs](https://docs.openzeppelin.com/) +* [solidity by example](https://solidity-by-example.org/) +* [smart contract programmer](https://www.youtube.com/channel/UCJWh7F3AFyQ_x01VKzr9eyA/videos) +* [solidity cheatsheet and best practices](https://github.com/manojpramesh/solidity-cheatsheet) +* [solidity vscode plugin](https://marketplace.visualstudio.com/items?itemName=tintinweb.solidity-visual-auditor) +* [another solidity vscode plugin](https://marketplace.visualstudio.com/items?itemName=JuanBlanco.solidity) +* [founder](https://getfoundry.sh/) +* [founder book](https://book.getfoundry.sh/forge/differential-ffi-testing)