Skip to content

Commit

Permalink
1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mateolafalce committed Jan 23, 2024
1 parent 279b4e4 commit 65541af
Show file tree
Hide file tree
Showing 7 changed files with 324 additions and 463 deletions.
271 changes: 1 addition & 270 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,273 +81,4 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build


standar:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features standar


numbers:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features numbers


lower_letter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features lower_letter


upper_letter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features upper_letter


f:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features f


ctrl_lower_letter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features ctrl_lower_letter


ctrl_upper_letter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features ctrl_upper_letter


ctrl_standar:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features ctrl_standar


ctrl_numbers:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features ctrl_numbers


alt_lower_letter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features alt_lower_letter


alt_upper_letter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features alt_upper_letter


alt_gr_lower_letter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features alt_gr_lower_letter


alt_gr_upper_letter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features alt_gr_upper_letter


alt_gr_numbers:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features alt_gr_numbers


full:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- uses: actions-rs/cargo@v1
with:
command: build
args: --features full
args: --all-features
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k_board"
version = "1.2.3"
version = "1.2.4"
edition = "2021"
license = "GPL-3.0"
authors = ["Mateo Lafalce <[email protected]>"]
Expand Down
17 changes: 1 addition & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,22 +412,7 @@ Feel free to contribute to the repository. Run the bash command below to make al
clear &&
cargo fmt &&
cargo clippy &&
cargo build --features standar &&
cargo build --features numbers &&
cargo build --features lower_letter &&
cargo build --features upper_letter &&
cargo build --features f &&
cargo build --features ctrl_lower_letter &&
cargo build --features ctrl_upper_letter &&
cargo build --features ctrl_standar &&
cargo build --features ctrl_numbers &&
cargo build --features alt_lower_letter &&
cargo build --features alt_upper_letter &&
cargo build --features alt_numbers &&
cargo build --features alt_gr_lower_letter &&
cargo build --features alt_gr_upper_letter &&
cargo build --features alt_gr_numbers &&
cargo build --features full
cargo build --all-features
```

```rust
Expand Down
Loading

0 comments on commit 65541af

Please sign in to comment.