Skip to content

Fix testing workflow #24

Fix testing workflow

Fix testing workflow #24

Workflow file for this run

# 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:
jobs:
test-repository:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Setup test environment
run: |
apt-get update
apt-get install -y apt-utils
apt-get install -y \
curl \
jq \
make \
perl \
wget \
xz-utils
- name: Install dependencies
run: make deps
- name: Run checks and tests
run: make check