Skip to content

Introduce Customizable Universal Resolver #54

Introduce Customizable Universal Resolver

Introduce Customizable Universal Resolver #54

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
needs: [check]