Skip to content

Commit

Permalink
1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mateolafalce committed Dec 28, 2023
1 parent 5d536ad commit f5d06f0
Show file tree
Hide file tree
Showing 9 changed files with 544 additions and 72 deletions.
209 changes: 208 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,211 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
args: -- -D warnings
build:
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
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
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_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_letter
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/target
/Cargo.lock
src/main.rs
build.sh
4 changes: 3 additions & 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.1"
version = "1.2.2"
edition = "2021"
license = "GPL-3.0"
authors = ["Mateo Lafalce <mateolafalce@protonmail.com>"]
Expand All @@ -20,6 +20,8 @@ lower_letter = []
upper_letter = []
f = []
ctrl_lower_letter = []
ctrl_upper_letter = []
ctrl_standar = []
alt_lower_letter = []
alt_upper_letter = []
alt_gr_letter = []
Expand Down
Loading

0 comments on commit f5d06f0

Please sign in to comment.