diff --git a/.github/workflows/api-test.yml b/.github/workflows/api-test.yml deleted file mode 100644 index 8d0ba889..00000000 --- a/.github/workflows/api-test.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: API-test - -on: - pull_request: - branches: - - master - -jobs: - tests: - runs-on: ubuntu-20.04 - steps: - - name: Start-container - run: docker run --rm -d -p 8080:8080 cardano-rosetta:${{ github.sha }} - - name: Wait for docker to start - run: sleep 60 - - name: "Install Node" - uses: actions/setup-node@v1 - with: - node-version: '21.x' - - name: "Install newman" - run: npm install -g newman - - name: "Run tests" - working-directory: ./cardano-rosetta - run: newman run ./test/deployed-environment-test/rosetta-java.postman_collection.json -e ./test/deployed-environment-test/environments/mainnet-typescript.postman_environment.json -r cli \ No newline at end of file diff --git a/config/README.md b/config/README.md new file mode 100644 index 00000000..7766cd9f --- /dev/null +++ b/config/README.md @@ -0,0 +1,9 @@ +# Cardano Configurations + +This repository holds the latest configurations for various core Cardano components (cardano-node, cardano-db-sync...), as well as the genesis configurations of well-known networks (i.e. mainnet and testnet...). It's **updated automatically, when required, by a cron-job once a day**, using the [The Cardano Book](https://book.world.dev.cardano.org/environments.html) as a source, and, since they're a Git repository, can be added to a project as a Git submodule and specific configurations can be pinned via a commit reference. The folder structure is network-centric and works well for setup where the network is fixed via a command-line option or environment variable. + +--- + +

+ +