gupax/.github/workflows/windows-test.yml
2023-01-28 21:55:19 -05:00

28 lines
439 B
YAML

name: Windows Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
steps:
- name: Cache
uses: actions/cache@v3.2.3
with:
path: |
~\.cargo\registry
~\.cargo\git
target
key: windows cargo test
- uses: actions/checkout@v3
- name: Test
run: cargo test