Skip to content

feat(sol-thir-lowering): add implicit_fun_eta case #50

feat(sol-thir-lowering): add implicit_fun_eta case

feat(sol-thir-lowering): add implicit_fun_eta case #50

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
jobs:
fmt:
name: Source formatting check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
submodules: true
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
env:
NO_REBUILD_TYPE_SITTER: 1
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
env:
NO_REBUILD_TYPE_SITTER: 1
check:
name: Compilation check
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
rust:
- stable
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
submodules: true
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
env:
NO_REBUILD_TYPE_SITTER: 1
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
env:
NO_REBUILD_TYPE_SITTER: 1
clippy:
name: Lint check
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust:
- stable
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
submodules: true
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: clippy
env:
NO_REBUILD_TYPE_SITTER: 1
- name: Run lints
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
env:
NO_REBUILD_TYPE_SITTER: 1
test:
name: Test check
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
rust:
- stable
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
env:
NO_REBUILD_TYPE_SITTER: 1
- name: Run test check
uses: actions-rs/cargo@v1
with:
command: test
env:
NO_REBUILD_TYPE_SITTER: 1