name: Win64 CI
on:
push:
branches:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: rustup update --no-self-update && rustup target add x86_64-pc-windows-msvc
- name: build
run: cargo build --target=x86_64-pc-windows-msvc --release