Bump node version from 16 to 20, also bump checkout action version to… #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Example Workflow | |
on: push | |
jobs: | |
build: | |
name: Print Versions | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
version: | |
- 1.34.0 | |
- latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Dhall | |
uses: ./ | |
with: | |
version: ${{ matrix.version }} | |
github_token: ${{ github.token }} | |
- name: Print version | |
run: | | |
echo "dhall version: $(dhall version)" | |
echo "dhall-json version: $(dhall-to-json --version)" | |
echo "dhall-yaml version: $(dhall-to-yaml --version)" |