Changeset d996cc8 in trunk


Ignore:
Timestamp:
2020-02-26T04:17:45Z (5 years ago)
Author:
Sajith Sasidharan <sajith@…>
Branches:
master
Children:
5ba0ba78
Parents:
4924cd9
Message:

Fix a syntax error

Per GitHub?, this is not fine:

  • name: [Windows] Do stuff run: ...

This is fine:

  • name: Do stuff [Windows] run: ...
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified .github/workflows/ci.yml

    r4924cd9 rd996cc8  
    2929      # extension.  See https://chocolatey.org/packages/vcpython27 and
    3030      # https://github.com/crazy-max/ghaction-chocolatey
    31       - name: [Windows] Install MSVC 9.0 for Python 2.7
     31      - name: Install MSVC 9.0 for Python 2.7 [Windows]
    3232        if: matrix.os == 'windows-latest' && matrix.python-version == '2.7'
    3333        uses: crazy-max/ghaction-chocolatey@v1
     
    9393    steps:
    9494
    95       - name: [Ubuntu] Install Tor
     95      - name: Install Tor [Ubuntu]
    9696        if: matrix.os == 'ubuntu-latest'
    9797        run: sudo apt install tor
    9898
    99       - name: [macOS] Install Tor
     99      - name: Install Tor [macOS]
    100100        if: matrix.os == 'macos-latest'
    101101        run: brew install tor
    102102
    103       - name: [Windows] Install Tor
     103      - name: Install Tor [Windows]
    104104        if: matrix.os == 'windows-latest'
    105105        uses: crazy-max/ghaction-chocolatey@v1
     
    159159      # extension.  See https://chocolatey.org/packages/vcpython27 and
    160160      # https://github.com/crazy-max/ghaction-chocolatey
    161       - name: [Windows] Install MSVC 9.0 for Python 2.7
     161      - name: Install MSVC 9.0 for Python 2.7 [Windows]
    162162        if: matrix.os == 'windows-latest' && matrix.python-version == '2.7'
    163163        uses: crazy-max/ghaction-chocolatey@v1
Note: See TracChangeset for help on using the changeset viewer.