Skip to content

Remove unnecessary async for Secp256k1 functions (Simon's version) #856

Remove unnecessary async for Secp256k1 functions (Simon's version)

Remove unnecessary async for Secp256k1 functions (Simon's version) #856

Workflow file for this run

name: autofix.ci # needed to securely identify the workflow
on:
pull_request:
permissions:
contents: read
jobs:
# format-text and format-shell in one job to ensure we don't require multiple fix commits and CI re-runs
format:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
with:
lfs: true
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'yarn'
- uses: actions/setup-go@v6
with:
go-version: "oldstable"
- name: Install shfmt
run: go install mvdan.cc/sh/v3/cmd/[email protected]
- name: Install dependencies
run: yarn install --immutable --immutable-cache --check-cache
- name: Format text
run: yarn format-text
- name: Format shell
run: yarn format-shell
- name: Format codebase (.ts)
run: yarn format
# See https://autofix.ci/
- uses: autofix-ci/action@v1