Skip to content

Commit

Permalink
[+] init
Browse files Browse the repository at this point in the history
  • Loading branch information
heng30 committed Mar 21, 2024
0 parents commit c076dac
Show file tree
Hide file tree
Showing 146 changed files with 7,390 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Set update schedule for GitHub Actions
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
30 changes: 30 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: GitHub Actions
on: [push]
jobs:
action-run:
# runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "The ${{ github.workspace }} is now ready to test your code on the runner."
- run: ls ${{ github.workspace }}
- run: sudo apt update
- run: sudo apt install libxcb-composite0-dev

- run: echo "start install Rust..."
- name: Install Rust
uses: actions-rs/toolchain@v1
- run: echo "end install Rust..."

- run: echo "start build..."
- name: Install Cargo
uses: actions-rs/cargo@v1
with:
command: build
- run: echo "end build..."
- run: echo "🍏 This job's status is ${{ job.status }}."
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Cargo.lock
error.log
/target
bitbox-win-*
Loading

0 comments on commit c076dac

Please sign in to comment.