jmmt_tools/.github/workflows/ci.yml

17 lines
343 B
YAML
Raw Permalink Normal View History

2023-06-29 03:19:35 -04:00
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