1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

move cloc to its own job

This commit is contained in:
Kyle Spearrin 2020-07-17 11:04:21 -04:00
parent 13df738427
commit eb14268646

View File

@ -11,6 +11,21 @@ on:
jobs:
cloc:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up cloc
run: |
sudo apt-get update
sudo apt-get -y install cloc
- name: Print lines of code
run: cloc --include-lang C#,SQL,Razor,"Bourne Shell",PowerShell,HTML,CSS,Sass,JavaScript,TypeScript --vcs git
ubuntu:
runs-on: ubuntu-latest
@ -23,11 +38,6 @@ jobs:
- name: Set up gulp
run: npm i -g gulp
- name: Set up cloc
run: |
sudo apt-get update
sudo apt-get -y install cloc
- name: Print environment
run: |
dotnet --info
@ -52,9 +62,6 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2
- name: Print lines of code
run: cloc --vcs git --exclude-dir Resources,store,test,Properties --include-lang C#,XAML
- name: Build
run: |
chmod +x ./build.sh