mirror of
https://github.com/hinto-janai/gupax.git
synced 2024-12-23 11:29:38 +00:00
29 lines
442 B
YAML
29 lines
442 B
YAML
|
name: Windows Build
|
||
|
|
||
|
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 build
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Build
|
||
|
run: cargo build
|