Compare commits
No commits in common. "7a39fbd418c9c48d831c189e26b8abe850987a0f" and "9a4e2b3ca550ba90d88c694b2e50b4b6eea7fc49" have entirely different histories.
7a39fbd418
...
9a4e2b3ca5
1 changed files with 7 additions and 11 deletions
|
@ -6,19 +6,15 @@ jobs:
|
|||
build-run:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: rust
|
||||
image: alpine
|
||||
steps:
|
||||
- name: Update package repos
|
||||
run: apt update
|
||||
- name: Install Node using apt
|
||||
run: apt install nodejs -y
|
||||
- name: Get Dependancies
|
||||
run: apk add --no-cache musl-dev curl gcc deno git nodejs pkgconfig openssl openssl-dev openssl-libs-static
|
||||
- name: download Rustup
|
||||
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Deno
|
||||
uses: https://github.com/denoland/setup-deno@v2
|
||||
with:
|
||||
deno-version: v2.x
|
||||
- name: Build using Cargo
|
||||
run: cargo build --verbose
|
||||
run: ~/.cargo/bin/cargo build --verbose
|
||||
- name: Run unit tests
|
||||
run: cargo test --verbose
|
||||
run: ~/.cargo/bin/cargo test --verbose
|
||||
|
|
Loading…
Add table
Reference in a new issue