diff options
| author | 2019-08-27 03:27:17 +0200 | |
|---|---|---|
| committer | 2019-08-27 03:27:17 +0200 | |
| commit | 016d2e271b9f6f605b6b4935989c4b1acc263a2f (patch) | |
| tree | 5f56d33710502a4a5257b97e7a461a8fd66b1abf | |
| parent | 6298fd87a3d2305047a9458b46f7ec0f965740d7 (diff) | |
| download | iced-016d2e271b9f6f605b6b4935989c4b1acc263a2f.tar.gz iced-016d2e271b9f6f605b6b4935989c4b1acc263a2f.tar.bz2 iced-016d2e271b9f6f605b6b4935989c4b1acc263a2f.zip | |
Enable GitHub CI
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/integration.yml | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 00000000..726b7322 --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,16 @@ +name: Integration +on: [push] +jobs: +  test: +    runs-on: ${{ matrix.os }} +    strategy: +      matrix: +        os: [ubuntu-latest, windows-latest, macOS-latest] +        rust: [stable, beta] +    steps: +    - uses: actions/checkout@master +    - uses: hecrj/setup-rust-action@v1 +      with: +        rust-version: ${{ matrix.rust }} +    - name: Run tests +      run: cargo test --verbose | 
