This commit is contained in:
Kreyren 2020-02-11 21:16:58 +00:00
parent 5b6afcac8e
commit b0380b1f0a
2 changed files with 6 additions and 4 deletions

@ -19,6 +19,7 @@ jobs:
if ! command -v v >/dev/null; then
wget https://github.com/vlang/v/releases/latest/download/v_linux.zip -O "$HOME/.cache/vlang.zip"
[ ! -d /opt/vlang ] && mkdir /opt/vlang
[ ! -d "$HOME/.cache/" ] && mkdir "$HOME/.cache/"
[ ! -f /opt/vlang/v ] && unzip "$HOME/.cache/vlang.zip" -d /opt/vlang/v
[ ! -x /usr/bin/v ] && ln -sf /usr/bin/v /opt/vlang/v
fi
@ -33,6 +34,7 @@ jobs:
if ! command -v v >/dev/null; then
wget https://github.com/vlang/v/releases/latest/download/v_linux.zip -O "$HOME/.cache/vlang.zip"
[ ! -d /opt/vlang ] && mkdir /opt/vlang
[ ! -d "$HOME/.cache/" ] && mkdir "$HOME/.cache/"
[ ! -f /opt/vlang/v ] && unzip "$HOME/.cache/vlang.zip" -d /opt/vlang/v
[ ! -x /usr/bin/v ] && ln -sf /usr/bin/v /opt/vlang/v
fi

@ -58,7 +58,7 @@ jobs:
pip install pytest
# FIXME: False triggers on files which names continues after set extension
cd "$GITHUB_WORKSPACE" && for file in $(git ls-tree --name-only -r ${{ github.sha }} | grep '\.py$'); do pytest "$file"; done
lint-macos-python-3_5:
lint-window-python-3_5:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
@ -132,7 +132,7 @@ jobs:
pip install pytest
# FIXME: False triggers on files which names continues after set extension
cd "$GITHUB_WORKSPACE" && for file in $(git ls-tree --name-only -r ${{ github.sha }} | grep '\.py$'); do pytest "$file"; done
lint-macos-python-3_6:
lint-window-python-3_6:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
@ -206,7 +206,7 @@ jobs:
pip install pytest
# FIXME: False triggers on files which names continues after set extension
cd "$GITHUB_WORKSPACE" && for file in $(git ls-tree --name-only -r ${{ github.sha }} | grep '\.py$'); do pytest "$file"; done
lint-macos-python-3_7:
lint-windows-python-3_7:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
@ -280,7 +280,7 @@ jobs:
pip install pytest
# FIXME: False triggers on files which names continues after set extension
cd "$GITHUB_WORKSPACE" && for file in $(git ls-tree --name-only -r ${{ github.sha }} | grep '\.py$'); do pytest "$file"; done
lint-macos-python-3_8:
lint-windows-python-3_8:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2