Compare commits

..

No commits in common. "7a39fbd418c9c48d831c189e26b8abe850987a0f" and "9a4e2b3ca550ba90d88c694b2e50b4b6eea7fc49" have entirely different histories.

View file

@ -6,19 +6,15 @@ jobs:
build-run: build-run:
runs-on: docker runs-on: docker
container: container:
image: rust image: alpine
steps: steps:
- name: Update package repos - name: Get Dependancies
run: apt update run: apk add --no-cache musl-dev curl gcc deno git nodejs pkgconfig openssl openssl-dev openssl-libs-static
- name: Install Node using apt - name: download Rustup
run: apt install nodejs -y run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
- name: Checkout repo - name: Checkout repo
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Deno
uses: https://github.com/denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Build using Cargo - name: Build using Cargo
run: cargo build --verbose run: ~/.cargo/bin/cargo build --verbose
- name: Run unit tests - name: Run unit tests
run: cargo test --verbose run: ~/.cargo/bin/cargo test --verbose