Skip to content

Bump elliptic from 6.5.3 to 6.5.7 in /frontend #412

Bump elliptic from 6.5.3 to 6.5.7 in /frontend

Bump elliptic from 6.5.3 to 6.5.7 in /frontend #412

Workflow file for this run

name: Java Format
on: [pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Download google-java-format 1.8
run: wget -q https://github.com/google/google-java-format/releases/download/google-java-format-1.8/google-java-format-1.8-all-deps.jar
- name: Format with google-java-format 1.8
run: ./backend/formatter.sh
shell: bash