Skip to content

Commit 294d974

Browse files
committed
v0.0.38
1 parent 139dc6e commit 294d974

File tree

7 files changed

+2104
-85
lines changed

7 files changed

+2104
-85
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ on:
4747
jobs:
4848
# Run 'dist plan' (or host) to determine what tasks we need to do
4949
plan:
50-
runs-on: "ubuntu-20.04"
50+
runs-on: "ubuntu-latest"
5151
outputs:
5252
val: ${{ steps.plan.outputs.manifest }}
5353
tag: ${{ !github.event.pull_request && github.ref_name || '' }}

.github/workflows/rust.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: rustc -V
20+
run: rustc -V
21+
- name: cargo -V
22+
run: cargo -V
23+
- name: Build
24+
run: cat Cargo.toml && cargo build --verbose
25+
- name: Run tests
26+
run: cat Cargo.toml && cargo test --verbose

0 commit comments

Comments
 (0)