-
Notifications
You must be signed in to change notification settings - Fork 5
46 lines (36 loc) · 901 Bytes
/
tmp.yml
File metadata and controls
46 lines (36 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: TMP
on:
- push
- workflow_dispatch
jobs:
tmp:
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macOS-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install Ubuntu dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install build-essential
sudo apt-get install flex
sudo apt-get install bison
sudo apt-get install texinfo
- name: Install macOS dependencies
if: matrix.os == 'macOS-latest'
run: |
brew install flex
brew install bison
brew install texinfo
- name: asdf_install
uses: asdf-vm/actions/install@v1
- name: Test
run: |
which python
python --version
ls -lah ~/.asdf