Skip to content

Bump postcss from 8.4.29 to 8.4.31 in /packages/samlang-website #103

Bump postcss from 8.4.29 to 8.4.31 in /packages/samlang-website

Bump postcss from 8.4.29 to 8.4.31 in /packages/samlang-website #103

Workflow file for this run

name: Rust
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: oven-sh/setup-bun@v1
- name: Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-build-debug-${{ hashFiles('**/Cargo.lock') }}
- name: Format Check
run: cargo fmt --all -- --check
- name: Build Tests
run: cargo build --tests
- name: Lint
run: cargo lint
- name: Build and Validate
run: cargo e2e
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy, llvm-tools-preview
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Install nextest
uses: taiki-e/install-action@nextest
- name: Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: cargo-test-${{ hashFiles('**/Cargo.lock') }}
- name: Run Tests
run: cargo tc