Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

t

t #317

Workflow file for this run

name: Ubuntu
on:
pull_request:
push:
branches-ignore:
- release/**
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
java_version: [ 11 ]
steps:
- uses: actions/checkout@v3
- name: "Set up JDK ${{ matrix.java_version }}"
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: ${{ matrix.java_version }}
cache: sbt
# - name: build
# run: sbt test
- name: check finds test todos
run: |
./scripts/dev/assemble.sh
if ./scripts/todo-checker.sh ; then
echo "todo-checker should have found todos and fail but exit code was 0" && false
else
echo "todo-checker found errors as expected"
fi
- name: ls
run: |
pwd
ls -la
- name: List Files using Docker
uses: docker://alpine:latest
with:
entrypoint: /bin/sh
args: -c "pwd; ls -la"
- name: Check no own todos
if: matrix.java_version == 11
uses: tegonal/workflow-helper@v0.3.0
with:
commands: 'todo-checker -i "wh#\d+"'