Skip to content

Commit

Permalink
Use v0.1.7.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleidukos committed Mar 7, 2024
1 parent cb1af96 commit 42ca596
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ jobs:
steps:
- name: Extract the tested GHC versions
id: set-matrix
uses: kleidukos/get-tested@f111f862f481884c26faa691de3c51ae110cc766
uses: kleidukos/get-tested@2ba76bba06a2c1b8d7602e8a87e5e3b10735a6fb
with:
cabal-file: get-tested.cabal
ubuntu: true
version: 0.1.6.0
ubuntu-version: latest
macos-version: "13"
version: 0.1.7.0-rc1
tests:
name: ${{ matrix.ghc }} on ${{ matrix.os }}
needs: generate-matrix
Expand Down
16 changes: 10 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,25 +49,29 @@ runs:
wget -q https://github.com/Kleidukos/get-tested/releases/download/v${{ inputs.version }}/get-tested-${{ inputs.version }}-linux-amd64 -O get-tested
chmod +x get-tested
if [[ -n ${{ inputs.windows-version}} ]]
echo "::debug:: ${{ inputs.macos-version }}"
echo "::debug:: ${{ inputs.windows-version }}"
echo "::debug:: ${{ inputs.ubuntu-version }}"
if [[ -n "${{ inputs.windows-version }}" ]]
echo "::debug:: Windows explicit enabled: ${{ inputs.windows-version }}"
then echo "WINDOWS=\"--windows-version=${{ inputs.windows-version }}\"" >> $GITHUB_ENV
then echo "WINDOWS=--windows-version=${{ inputs.windows-version }}" >> $GITHUB_ENV
elif [[ ${{ inputs.windows }} == "true" ]]
echo "::debug:: Windows fallback enabled: ${{ inputs.windows }}"
then echo "WINDOWS=--windows" >> $GITHUB_ENV
fi
if [[ ${{ -n inputs.macos-version}} ]]
if [[ -n "${{ inputs.macos-version }}" ]]
echo "::debug:: macOS explicit version enabled: ${{ inputs.macos-version }}"
then echo "MACOS=\"--macos-version=${{ inputs.macos-version }}\"" >> $GITHUB_ENV
then echo "MACOS=--macos-version=${{ inputs.macos-version }}" >> $GITHUB_ENV
elif [[ ${{ inputs.macos }} == "true" ]]
echo "::debug:: macOS fallback enabled: ${{ inputs.macos }}"
then echo "MACOS=--macos" >> $GITHUB_ENV
fi
if [[ ${{ -n inputs.ubuntu-version}} ]]
if [[ -n "${{ inputs.ubuntu-version }}" ]]
echo "::debug:: Ubuntu explicit version enabled: ${{ inputs.ubuntu-version }}"
then echo "UBUNTU=\"--ubuntu-version=${{ inputs.ubuntu-version }}\"" >> $GITHUB_ENV
then echo "UBUNTU=--ubuntu-version=${{ inputs.ubuntu-version }}" >> $GITHUB_ENV
elif [[ ${{ inputs.ubuntu }} == "true" ]]
echo "::debug:: Ubuntu fallback enabled: ${{ inputs.ubuntu }}"
then echo "UBUNTU=--ubuntu" >> $GITHUB_ENV
Expand Down
Binary file removed get-tested
Binary file not shown.

0 comments on commit 42ca596

Please sign in to comment.