Skip to content

fixup

fixup #1

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to GitHub Docker Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build dev image
uses: docker/build-push-action@v5
with:
push: false
target: base_with_app
build-args: |
GIT_REVISION=${{ github.sha }}
tags: |
spaceage_api_dev
- name: Run lint.sh in dev container
run: docker run -i --rm spaceage_api_dev ./lint.sh