Skip to content
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