Fix testing workflow #27
Workflow file for this run
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
# Find Github Actions to setup tooling here: | |
# - https://github.com/actions/?q=setup&type=&language= | |
# - https://github.com/actions/starter-workflows/tree/main/ci | |
# - https://github.com/marketplace?type=actions&query=setup | |
name: Exercism YAMLScript Track / Test | |
on: | |
push: | |
# branches: [main] | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test-repository: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- run: pwd | |
- run: whoami | |
- run: sudo apt-get update | |
- run: sudo apt-get install -y apt-utils | |
- run: sudo apt-get install -y curl jq make perl wget xz-utils | |
# sudo apt-get install -y \ | |
# curl \ | |
# jq \ | |
# make \ | |
# perl \ | |
# wget \ | |
# xz-utils | |
- name: Install dependencies | |
run: make deps | |
- name: Run checks and tests | |
env: | |
EXERCISM_YAMLSCRIPT_GHA: 1 | |
run: make check |