Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias authored Jul 3, 2022
1 parent 902da25 commit 24c55f0
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,35 @@ jobs:
cd ~
v check-md ~/.vmodules/vsl
ci:
fmt-check:
runs-on: ubuntu-latest

steps:
- name: Checkout VSL
uses: actions/checkout@v2
with:
path: vsl

- name: Setup V
uses: vlang/setup-v@v1
with:
check-latest: true

- name: V doctor
run: v doctor

- name: Install dependencies
run: |
sudo apt-get install --quiet -y --no-install-recommends gfortran liblapacke-dev libopenblas-dev libgc-dev libopenmpi-dev
- name: Move VSL source code to V Modules
run: mv ./vsl ~/.vmodules

- name: Verify Fmt
continue-on-error: true
run: v fmt -verify ~/.vmodules/vsl

run-tests:
runs-on: ${{ matrix.os }}

strategy:
Expand Down

0 comments on commit 24c55f0

Please sign in to comment.