OmniSharp / omnisharp-vim

Vim omnicompletion (intellisense) and more for C#
http://www.omnisharp.net
MIT License
1.7k stars 169 forks source link

[add] windows and macos test for tox #716

Closed get-me-power closed 3 years ago

get-me-power commented 3 years ago

I added windows test for tox.

nickspoons commented 3 years ago

Can't we add Windows to the current tox test, using something like this?

name: tox

on:
  push:
    branches:
      - master
  pull_request:

jobs:
  test:
    name: Test
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        python-version: [2.7, 3.9]
        os: [macos-latest, ubuntu-latest, windows-latest]
...
get-me-power commented 3 years ago

@nickspoons Thanks for your review. I fixed.