feat(*): add testing CI configuration
This commit is contained in:
parent
ee7504f5f7
commit
bd1d3dd8d3
|
@ -5,3 +5,7 @@ end_of_line = lf
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
indent_style = tab
|
indent_style = tab
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
|
||||||
|
# spefcifically for YAML
|
||||||
|
[yml]
|
||||||
|
indent_style = space
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, windows-latest]
|
||||||
|
runs-on: ${{matrix.os}}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Build
|
||||||
|
run: cargo build
|
||||||
|
- name: Test
|
||||||
|
run: cargo test --verbose
|
Loading…
Reference in New Issue