gupaxx/.github/workflows/macos.yml

31 lines
457 B
YAML
Raw Normal View History

2023-04-14 17:51:59 +00:00
name: macOS
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: macos-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: macos
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