We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebcba6 commit 0dde335Copy full SHA for 0dde335
.circleci/hreconfig.yml
@@ -0,0 +1,26 @@
1
+# Use the latest 2.1 version of CircleCI pipeline process engine.
2
+# See: https://circleci.com/docs/configuration-reference
3
+
4
+version: 2.1
5
+executors:
6
+ my-custom-executor:
7
+ docker:
8
+ - image: cimg/base:stable
9
+ auth:
10
+ # ensure you have first added these secrets
11
+ # visit app.circleci.com/settings/project/github/Dargon789/hardhat-project/environment-variables
12
+ username: $DOCKER_HUB_USER
13
+ password: $DOCKER_HUB_PASSWORD
14
+jobs:
15
+ web3-defi-game-project-:
16
17
+ executor: my-custom-executor
18
+ steps:
19
+ - checkout
20
+ - run: |
21
+ # echo Hello, World!
22
23
+workflows:
24
+ my-custom-workflow:
25
+ jobs:
26
+ - web3-defi-game-project-
0 commit comments