Skip to content

fix: do not propagate env changes outside subshells #324

fix: do not propagate env changes outside subshells

fix: do not propagate env changes outside subshells #324

Workflow file for this run

name: ci
on:
pull_request:
branches: [main]
push:
branches: [main]
tags:
- '*'
jobs:
rust:
name: deno_task_shell-${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
env:
CARGO_INCREMENTAL: 0
GH_ACTIONS: 1
RUST_BACKTRACE: full
RUSTFLAGS: -D warnings
steps:
- name: Clone repository
uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
- uses: dsherret/rust-toolchain-file@v1
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Format
if: contains(matrix.os, 'ubuntu')
run: cargo fmt --all -- --check
- name: Lint
if: contains(matrix.os, 'ubuntu')
run: cargo clippy --all-targets --all-features --release
- name: Build only parser
if: contains(matrix.os, 'ubuntu')
run: cargo build --no-default-features
- name: Build
run: cargo build --all-targets --all-features --release
- name: Test
run: cargo test --all-targets --all-features --release
- name: Publish
if: |
github.repository == 'denoland/deno_task_shell' &&
startsWith(github.ref, 'refs/tags/') &&
contains(matrix.os, 'ubuntu')
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: |
cargo publish