diff --git a/.github/workflows/cargo.yml b/.github/workflows/cargo.yml index f9f8cf7..038d882 100644 --- a/.github/workflows/cargo.yml +++ b/.github/workflows/cargo.yml @@ -2,9 +2,9 @@ name: cargo on: push: - branches: [master] + branches: [ master ] pull_request: - branches: [master] + branches: [ master ] concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -18,7 +18,7 @@ jobs: name: Build and test strategy: matrix: - os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] + os: [ 'ubuntu-latest', 'macos-latest' ] #, 'windows-latest' runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2