Skip to content

fix #17 #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,24 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@master
- uses: hecrj/[email protected]
with:
rust-version: stable
- uses: leafo/[email protected]
- uses: actions/setup-python@v1
- uses: BSFishy/pip-action@v1
with:
luaVersion: "5.3"
- uses: leafo/[email protected]
- name: Install dependencies
run: luarocks install tl
- name: run tests
run: cargo test
packages: hererocks
- name: Install lua and luarocks
run: python -m hererocks -l 5.3 -rlatest .luaenv
- name: Setup luarocks and run tests
run: |
. ./.luaenv/bin/activate
luarocks install tl
. ./.luaenv/bin/activate
cargo test
clippy:
runs-on: ubuntu-latest
steps:
Expand Down