Skip to content

Commit 51b0484

Browse files
authored
Merge pull request #153 from kraktus/refactor_2
Reduce technical debt
2 parents 1d6cfb7 + 7189f06 commit 51b0484

19 files changed

+1376
-1014
lines changed

.github/workflows/ci.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
push:
5+
jobs:
6+
test:
7+
name: Test
8+
strategy:
9+
matrix:
10+
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
11+
rust: ["stable"]
12+
runs-on: ${{ matrix.os }}
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v2
16+
- name: Install Rust
17+
uses: actions-rs/toolchain@v1
18+
with:
19+
toolchain: ${{ matrix.rust }}
20+
profile: minimal
21+
override: true
22+
- uses: Swatinem/rust-cache@v1
23+
- name: Build
24+
run: cargo test --no-run
25+
- name: Test
26+
run: cargo test

.github/workflows/linuxci.yml

-29
This file was deleted.

.github/workflows/macosci.yml

-29
This file was deleted.

.github/workflows/windowsci.yml

-20
This file was deleted.

0 commit comments

Comments
 (0)