feat(*): add testing CI configuration

This commit is contained in:
Lily Tsuru 2023-06-29 03:19:35 -04:00
parent ee7504f5f7
commit bd1d3dd8d3
2 changed files with 20 additions and 0 deletions

View File

@ -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

16
.github/workflows/ci.yml vendored Normal file
View File

@ -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