Skip to content

Commit

Permalink
Try pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma-andex committed Jan 2, 2024
1 parent 7866e3c commit 322ae6b
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,25 @@ name: Rust

on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions/checkout@v3
- name: Setup
run: |
cargo install wasm-pack
sudo apt update
sudo apt install nodejs
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit 322ae6b

Please sign in to comment.