gupax/.github/workflows/macos.yml
2023-04-14 13:55:45 -04:00

30 lines
457 B
YAML

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