Skip to content

CI: pin GitHub Actions workflows #26

CI: pin GitHub Actions workflows

CI: pin GitHub Actions workflows #26

Workflow file for this run

name: wren-test-runner / ci
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
# precheck:
# runs-on: <image-name>
# steps:
# - uses: actions/checkout@
# - name: Use <setup tooling>
# uses: <action to setup tooling>
# with:
# # Here, use the LTS/stable version of the track's tooling, e.g.:
# # node-version: 12.x
# - name: Install project dependencies
# run: <install dependencies>
# - name: Run exercism/wren ci pre-check (checks config, lint code) for all exercises
# run: scripts/ci-check
ci:
runs-on: ubuntu-22.04
steps:
- name: install wren-console
uses: joshgoebel/install_wren_console@57ab2c4063656330e748b2cbd4beaeac30112a80
- name: Checkout wren-test-runner
uses: actions/checkout@

Check failure on line 36 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / wren-test-runner / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 36, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions/checkout@' Input string was not in a correct format.
with:
path: test-runner
- name: Install deps and run CI
run: |
sudo apt-get install -y moreutils
cd test-runner
wrenc package.wren install
./bin/post-install.sh
./bin/run-tests.sh