Skip to content

leetcode removing stars from a string #260

leetcode removing stars from a string

leetcode removing stars from a string #260

Workflow file for this run

name: py
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install deps with ${{ matrix.python }}
run: make deps
- name: Lint with ${{ matrix.python }}
run: make lint