Files
termscp/.github/workflows/macos.yml
ChristianVisintin 5c5a93cc41 use macos-latest
2020-12-10 11:10:42 +01:00

19 lines
267 B
YAML

name: MacOS
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose