mirror of
https://github.com/godotengine/godot-csharp-vscode.git
synced 2025-12-31 21:48:32 +03:00
16 lines
321 B
YAML
16 lines
321 B
YAML
name: Continuous integration
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Lint extension
|
|
run: |
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -qq dos2unix recode
|
|
bash ./format.sh
|