gupax/.github/workflows/windows.yml

31 lines
463 B
YAML
Raw Normal View History

2023-04-14 17:51:59 +00:00
name: Windows
2023-01-29 01:57:12 +00:00
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
2023-04-14 17:51:59 +00:00
key: windows
2023-01-29 01:57:12 +00:00
- uses: actions/checkout@v3
- name: Build
run: cargo build
2023-04-14 17:51:59 +00:00
- name: Test
run: cargo test