Skip to content

Introduce Customizable Universal Resolver #64

Introduce Customizable Universal Resolver

Introduce Customizable Universal Resolver #64

Workflow file for this run

name: PR Check
on:
pull_request:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check ENState ⚒️
runs-on: ubuntu-latest
strategy:
matrix:
path: [server, worker]
include:
- path: server
target: x86_64-unknown-linux-gnu
- path: worker
target: wasm32-unknown-unknown
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile minimal
rustup target add ${{ matrix.target }}
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
with:
version: "v0.7.4"
- run: cargo check --target ${{ matrix.target }} --release
working-directory: ${{ matrix.path }}
test:
name: Test ENState 🧪
uses: ./.github/workflows/test.yml
secrets:
RPC_URL: ${{ secrets.RPC_URL }}

Check failure on line 46 in .github/workflows/pr_check.yml

View workflow run for this annotation

GitHub Actions / PR Check

Invalid workflow file

The workflow is not valid. .github/workflows/pr_check.yml (Line: 46, Col: 16): Invalid secret, RPC_URL is not defined in the referenced workflow. .github/workflows/pr_check.yml (Line: 47, Col: 24): Invalid secret, OPENSEA_API_KEY is not defined in the referenced workflow.
OPENSEA_API_KEY: ${{ secrets.OPENSEA_API_KEY }}
needs: [check]