Skip to content

fix: add author of package on create #66

fix: add author of package on create

fix: add author of package on create #66

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
code-formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v
- name: Checkout VPM
uses: actions/checkout@v2
with:
path: vpm
- name: Build V
run: make
- name: v fmt -verify
run: |
cd vpm
../v install
../v fmt -verify .
ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v
- name: Checkout VPM
uses: actions/checkout@v2
with:
path: vpm
- name: Install dependencies
run: sudo apt-get install --quiet -y postgresql libpq-dev libssl-dev
- name: Build V
run: make
- name: Build VPM
run: |
cd vpm
../v install
../v -prod .
ls -lat