mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-21 11:31:09 +03:00
33 lines
764 B
YAML
33 lines
764 B
YAML
|
name: Continuous Integration
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
linux-tests:
|
||
|
name: Linux Tests
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
job_args: [api, config, controller, impls, libwallet, .]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Test ${{ matrix.job_args }}
|
||
|
working-directory: ${{ matrix.job_args }}
|
||
|
run: cargo test --release
|
||
|
|
||
|
macos-tests:
|
||
|
name: macOS Tests
|
||
|
runs-on: macos-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Tests
|
||
|
run: cargo test --release --all
|
||
|
|
||
|
windows-tests:
|
||
|
name: Windows Tests
|
||
|
runs-on: windows-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Tests
|
||
|
run: cargo test --release --all
|