feat: logging in contract and non contract env (#39) #154
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Rust CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths-ignore: ["docs/**", "README.md"] | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: ["docs/**", "README.md"] | |
| jobs: | |
| test_all: | |
| name: Test features | |
| runs-on: ubuntu-latest | |
| env: | |
| FREENET_LOG: error | |
| CARGO_TARGET_DIR: ${{ github.workspace }}/target | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/[email protected] | |
| with: | |
| access_token: ${{ github.token }} | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| targets: wasm32-unknown-unknown | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Test - features | |
| run: cargo test --workspace --features contract,net,testing,trace | |
| build_targets: | |
| name: Build targets | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| targets: ["wasm32-unknown-unknown", "x86_64-unknown-linux-gnu"] | |
| env: | |
| FREENET_LOG: error | |
| CARGO_TARGET_DIR: ${{ github.workspace }}/target | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/[email protected] | |
| with: | |
| access_token: ${{ github.token }} | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| targets: wasm32-unknown-unknown | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Build - freenet-stdlib | |
| working-directory: rust | |
| run: cargo build --target ${{ matrix.targets }} | |
| clippy_check: | |
| name: Clippy | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| target: ["wasm32-unknown-unknown", "x86_64-unknown-linux-gnu"] | |
| env: | |
| FREENET_LOG: error | |
| CARGO_TARGET_DIR: ${{ github.workspace }}/target | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/[email protected] | |
| with: | |
| access_token: ${{ github.token }} | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| components: clippy | |
| targets: wasm32-unknown-unknown | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: clippy - freenet-stdlib | |
| working-directory: rust | |
| run: cargo clippy --target ${{ matrix.target }} -- -D warnings | |
| fmt_check: | |
| name: Fmt | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| components: rustfmt | |
| - name: Check code formatting | |
| run: cargo fmt -- --check |