Fix version suffix #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push] | |
jobs: | |
tests: | |
name: Tests with Huff Neo | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Install Huff | |
uses: cakevm/huff-neo-toolchain@v1 | |
with: | |
version: latest | |
- name: Huff Tests | |
uses: ./ # uses the action in the current repository | |
with: | |
with-location: "tests" # defaults to "src" | |
with-extension: "*.t.huff" # default | |
with-format: "table" # default, either ["list", "table", "json"] |