Skip to content

Pull latest language versions #145

Pull latest language versions

Pull latest language versions #145

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
strategy:
matrix:
language: [python, rust, go, ruby, js]
name: ${{ matrix.language }}
runs-on: ubuntu-latest
steps:
- name: setup python
uses: actions/setup-python@v4
- name: checkout code
uses: actions/checkout@v3
- name: install prereqs
run: |
pip install pipenv
pipenv sync
- name: run tests
run: pipenv run tests ${{ matrix.language }} any